|
| 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