├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── gpcrmining ├── __init__.py └── gpcrdb │ ├── __init__.py │ ├── __main__.py │ ├── sequence.py │ └── structure.py ├── setup.py └── tests ├── test_sequence_arrestin.py ├── test_sequence_gpcr.py └── test_sequence_gprotein.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/TODO.md -------------------------------------------------------------------------------- /gpcrmining/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpcrmining/gpcrdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/gpcrmining/gpcrdb/__init__.py -------------------------------------------------------------------------------- /gpcrmining/gpcrdb/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/gpcrmining/gpcrdb/__main__.py -------------------------------------------------------------------------------- /gpcrmining/gpcrdb/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/gpcrmining/gpcrdb/sequence.py -------------------------------------------------------------------------------- /gpcrmining/gpcrdb/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/gpcrmining/gpcrdb/structure.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sequence_arrestin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/tests/test_sequence_arrestin.py -------------------------------------------------------------------------------- /tests/test_sequence_gpcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/tests/test_sequence_gpcr.py -------------------------------------------------------------------------------- /tests/test_sequence_gprotein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drorlab/GPCR-mining/HEAD/tests/test_sequence_gprotein.py --------------------------------------------------------------------------------