├── .gitignore ├── CycloPs ├── CycloPs.py ├── CycloPs.tif ├── __init__.py ├── aa_converter.py ├── cx_freeze │ └── setup.py ├── cyclopssmi.py ├── example_peptide_file.txt ├── non_natural_amino_scripts │ ├── create_liste.py │ ├── final_files.py │ ├── random_at.py │ └── rearrangement.py ├── py2app │ └── setup.py ├── py2exe │ └── setup.py ├── readme.txt └── zinc_output ├── LICENSE.txt ├── PepLibGen ├── Analysis │ ├── __init__.py │ └── chem_analysis.py ├── StructGen │ ├── StructGen.py │ ├── __init__.py │ ├── aminoacids.py │ ├── fasta.py │ ├── synthrules.py │ └── zinc_peptides.py ├── __init__.py ├── tests │ ├── StructGen_test.py │ └── synthrules_test.py └── tools │ ├── __init__.py │ └── tools.py ├── README.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.pyc 2 | build/ 3 | -------------------------------------------------------------------------------- /CycloPs/CycloPs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/CycloPs.py -------------------------------------------------------------------------------- /CycloPs/CycloPs.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/CycloPs.tif -------------------------------------------------------------------------------- /CycloPs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CycloPs/aa_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/aa_converter.py -------------------------------------------------------------------------------- /CycloPs/cx_freeze/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/cx_freeze/setup.py -------------------------------------------------------------------------------- /CycloPs/cyclopssmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/cyclopssmi.py -------------------------------------------------------------------------------- /CycloPs/example_peptide_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/example_peptide_file.txt -------------------------------------------------------------------------------- /CycloPs/non_natural_amino_scripts/create_liste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/non_natural_amino_scripts/create_liste.py -------------------------------------------------------------------------------- /CycloPs/non_natural_amino_scripts/final_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/non_natural_amino_scripts/final_files.py -------------------------------------------------------------------------------- /CycloPs/non_natural_amino_scripts/random_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/non_natural_amino_scripts/random_at.py -------------------------------------------------------------------------------- /CycloPs/non_natural_amino_scripts/rearrangement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/non_natural_amino_scripts/rearrangement.py -------------------------------------------------------------------------------- /CycloPs/py2app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/py2app/setup.py -------------------------------------------------------------------------------- /CycloPs/py2exe/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/py2exe/setup.py -------------------------------------------------------------------------------- /CycloPs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/readme.txt -------------------------------------------------------------------------------- /CycloPs/zinc_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/CycloPs/zinc_output -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PepLibGen/Analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PepLibGen/Analysis/chem_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/Analysis/chem_analysis.py -------------------------------------------------------------------------------- /PepLibGen/StructGen/StructGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/StructGen/StructGen.py -------------------------------------------------------------------------------- /PepLibGen/StructGen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PepLibGen/StructGen/aminoacids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/StructGen/aminoacids.py -------------------------------------------------------------------------------- /PepLibGen/StructGen/fasta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/StructGen/fasta.py -------------------------------------------------------------------------------- /PepLibGen/StructGen/synthrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/StructGen/synthrules.py -------------------------------------------------------------------------------- /PepLibGen/StructGen/zinc_peptides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/StructGen/zinc_peptides.py -------------------------------------------------------------------------------- /PepLibGen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PepLibGen/tests/StructGen_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/tests/StructGen_test.py -------------------------------------------------------------------------------- /PepLibGen/tests/synthrules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/tests/synthrules_test.py -------------------------------------------------------------------------------- /PepLibGen/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PepLibGen/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/PepLibGen/tools/tools.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fergaljd/cyclops/HEAD/setup.py --------------------------------------------------------------------------------