├── LICENSE.md ├── README.md ├── databases └── paper ├── image.png ├── results ├── docking_predictions │ └── predicted_binding_metrics.xlsx ├── replicate_summary.csv ├── result_summary.csv └── sequence_similarity.csv └── scripts ├── mmseqs_script.sh ├── sequence_similarity.py └── sequences.fasta /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/README.md -------------------------------------------------------------------------------- /databases/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/databases/paper -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/image.png -------------------------------------------------------------------------------- /results/docking_predictions/predicted_binding_metrics.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/results/docking_predictions/predicted_binding_metrics.xlsx -------------------------------------------------------------------------------- /results/replicate_summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/results/replicate_summary.csv -------------------------------------------------------------------------------- /results/result_summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/results/result_summary.csv -------------------------------------------------------------------------------- /results/sequence_similarity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/results/sequence_similarity.csv -------------------------------------------------------------------------------- /scripts/mmseqs_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/scripts/mmseqs_script.sh -------------------------------------------------------------------------------- /scripts/sequence_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/scripts/sequence_similarity.py -------------------------------------------------------------------------------- /scripts/sequences.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptyvbio/egfr_competition_1/HEAD/scripts/sequences.fasta --------------------------------------------------------------------------------