├── .gitignore ├── README.md ├── corona.py ├── data ├── __init__.py ├── allseq.json ├── amber99sb.xml ├── nl63.fasta └── sars.py ├── download_sequences.py ├── fold.py ├── lib.py ├── opt.py ├── proteins ├── 1ubq.pdb ├── QHD43418.pdb └── villin │ ├── 1vii.fasta │ ├── 1vii.pdb │ ├── 1vii_denatured.pdb │ ├── 1wy3.pdb │ ├── 1wy4.pdb │ ├── 1yrf.pdb │ ├── 1yri.pdb │ └── README └── vaccine ├── __init__.py ├── code └── load.py /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/README.md -------------------------------------------------------------------------------- /corona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/corona.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/allseq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/data/allseq.json -------------------------------------------------------------------------------- /data/amber99sb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/data/amber99sb.xml -------------------------------------------------------------------------------- /data/nl63.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/data/nl63.fasta -------------------------------------------------------------------------------- /data/sars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/data/sars.py -------------------------------------------------------------------------------- /download_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/download_sequences.py -------------------------------------------------------------------------------- /fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/fold.py -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/lib.py -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/opt.py -------------------------------------------------------------------------------- /proteins/1ubq.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/1ubq.pdb -------------------------------------------------------------------------------- /proteins/QHD43418.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/QHD43418.pdb -------------------------------------------------------------------------------- /proteins/villin/1vii.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1vii.fasta -------------------------------------------------------------------------------- /proteins/villin/1vii.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1vii.pdb -------------------------------------------------------------------------------- /proteins/villin/1vii_denatured.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1vii_denatured.pdb -------------------------------------------------------------------------------- /proteins/villin/1wy3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1wy3.pdb -------------------------------------------------------------------------------- /proteins/villin/1wy4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1wy4.pdb -------------------------------------------------------------------------------- /proteins/villin/1yrf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1yrf.pdb -------------------------------------------------------------------------------- /proteins/villin/1yri.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/1yri.pdb -------------------------------------------------------------------------------- /proteins/villin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/proteins/villin/README -------------------------------------------------------------------------------- /vaccine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vaccine/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/vaccine/code -------------------------------------------------------------------------------- /vaccine/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/corona/HEAD/vaccine/load.py --------------------------------------------------------------------------------