├── .gitattributes ├── LICENSE ├── README.md ├── refchaser ├── __init__.py ├── __main__.py ├── bibparser.py ├── bioreader.py ├── cermine.jar ├── massdownlit.py ├── querydatabase.py └── refchaser.py └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/README.md -------------------------------------------------------------------------------- /refchaser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/__init__.py -------------------------------------------------------------------------------- /refchaser/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/__main__.py -------------------------------------------------------------------------------- /refchaser/bibparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/bibparser.py -------------------------------------------------------------------------------- /refchaser/bioreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/bioreader.py -------------------------------------------------------------------------------- /refchaser/cermine.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/cermine.jar -------------------------------------------------------------------------------- /refchaser/massdownlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/massdownlit.py -------------------------------------------------------------------------------- /refchaser/querydatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/querydatabase.py -------------------------------------------------------------------------------- /refchaser/refchaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/refchaser/refchaser.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DQ-Zhang/refchaser/HEAD/setup.py --------------------------------------------------------------------------------