├── .github └── workflows │ └── tests.yml ├── .gitignore ├── GuthrieDatabase_April14.zip ├── LICENSE ├── README.md ├── guthrie_database.csv ├── guthrie_references_and_status.csv ├── pyproject.toml ├── tests └── test_data.py ├── tox.ini └── usage_notes.md /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/.gitignore -------------------------------------------------------------------------------- /GuthrieDatabase_April14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/GuthrieDatabase_April14.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/README.md -------------------------------------------------------------------------------- /guthrie_database.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/guthrie_database.csv -------------------------------------------------------------------------------- /guthrie_references_and_status.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/guthrie_references_and_status.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/tox.ini -------------------------------------------------------------------------------- /usage_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobleyLab/GuthrieSolv/HEAD/usage_notes.md --------------------------------------------------------------------------------