Skip to content

Commit 7803c92

Browse files
authored
Merge pull request #76 from ccdc-opensource/no_jira_publish_testset_generator
expose the test set generator (used in CSP test) as an opensource uti…
2 parents ef5b044 + b6dea47 commit 7803c92

7 files changed

+795
-0
lines changed

scripts/ReadMe.md

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ This folder contains scripts submitted by users or CCDC scientists for anyone to
4848

4949
- Calculates the surface charge for a given structure and surface terminations. Runs both from CMD and Mercury.
5050

51+
## Refcodes With Properties
52+
53+
- A script for generating refcode lists with specific properties from an easy-to-read control file.
54+
5155
## Tips
5256

5357
A section for top tips in using the repository and GitHub.
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Refcode List Generator
2+
3+
## Summary
4+
5+
A script that allows you to create refcode lists (or CSV files of properties for a refcode list) for simple properties.
6+
The advantage of the script is that the control is via an easy to read file so you can keep an interprettable record of
7+
how a test set was generated in research. You can also then reproduce the list, or indeed run it on a new database and
8+
update it with the same conditions.
9+
10+
### Relevance
11+
12+
We want research to be FAIR (Findable, Attributable, Interoperable and Reproducible) - this script means we can create a
13+
simple decscription of the test set used that any researcher could then reproduce from the script and the description.
14+
15+
## Requirements
16+
17+
- Tested with CSD Python API version 3.9 on Linux and Windows
18+
- ccdc.io
19+
- ccdc.search
20+
21+
## Licensing Requirements
22+
23+
- CSD-Core
24+
25+
## Instructions on Running
26+
27+
### Linux command line
28+
29+
- load the CSD Python API Miniconda environment
30+
- create a text control file with the various control lines specified
31+
- call Python to read the script and specify necessary arguments
32+
33+
~~~bash
34+
python refcodes_with_properties.py --help
35+
~~~
36+
37+
The above will print an extended help message that describes the registered
38+
39+
You can run the script with an Example file. Results are printed by default and can be redirected to be saved in an
40+
output file, e.g.
41+
42+
~~~
43+
python refcodes_with_properties.py -c example_control_file.txt -o mylist.gcd
44+
~~~
45+
46+
This will generate a GCD file that can be used in other work.
47+
48+
### Windows CSD Python API
49+
50+
- launch a CMD window
51+
- Use the installed version of the CSD Python API, for example C:\Users\<YOUR WINDOWS USERNAME>
52+
\CCDC\ccdc-software\csd-python-api assuming the CCDC tools are installed in the ususal place do this
53+
54+
~~~bat
55+
C:\Users\<YOUR WINDOWS USERNAME>\CCDC\ccdc-software\csd-python-api\run_python_api.bat refcodes_with_properties.py --help
56+
~~~
57+
58+
## Author
59+
60+
_Jason C.Cole_ 2025
61+
62+
> For feedback or to report any issues please contact [[email protected]](mailto:[email protected])

0 commit comments

Comments
 (0)