diff --git a/esm_scripts/__init__.py b/esm_scripts/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/esm_scripts/__init__.py @@ -0,0 +1 @@ + diff --git a/esm_scripts/atlas/README.md b/esm_scripts/atlas/README.md new file mode 100644 index 0000000000000000000000000000000000000000..715a25dbf9ea0ce984d150208d302b64df8e5f06 --- /dev/null +++ b/esm_scripts/atlas/README.md @@ -0,0 +1,100 @@ +# ESM Metagenomic Atlas + +The [ESM Metagenomic Atlas](https://esmatlas.com) is a resource of more than 700 million metagenomic protein structures predicted by ESMFold. +See our [blog post](https://ai.facebook.com/blog/protein-folding-esmfold-metagenomics/) to learn more. + +The first `v0` version of the Atlas was released on November 1st 2022, +corresponding to the sequences in the `2022_05` release of the MGnify protein database described [here](https://ftp.ebi.ac.uk/pub/databases/metagenomics/peptide_database/2022_05/README.txt). +An update `v2023_02` was released on March 17th 2023, corresponding to the sequences in the `2023_02` release of the MGnify protein database described [here](https://ftp.ebi.ac.uk/pub/databases/metagenomics/peptide_database/2023_02/). + +Here we provide bulk download instructions for the tarballs of predicted structures, as well as foldseek databases, and LM embeddings for every sequence in the Atlas. + +The structures in the ESM Metagenomic Atlas were predicted with `esm.pretrained.esmfold_v0()` for Atlas `v0`, while Atlas `v2023_02` used `esm.pretrained.esmfold_v1()`. +We find that protein structures with predicted LDDT > 0.7 and predict TM > 0.7 to be both reasonably well structured and interesting. +Therefore, we provide both the small set of "high confidence" metagenomic structures from Atlas `v0`, as well as the full set. +The small set of structures is built from taking a 30% sequence identity clustering of MGnify90 `2022_05`, and using the best structure from each cluster. +The best structure is selected using the score pTM * pLDDT. + +The high confidence structures are around 1TB in size. + +The full database is available as PDB structures and is 15TB in size for `v0`. + +As an entrypoint into the database, the metadata is available as a small (~25 GB) file [metadata.sqlite](https://dl.fbaipublicfiles.com/esmatlas/v2023_02/metadata-rc2.sqlite.gz) / [metadata.parquet](https://dl.fbaipublicfiles.com/esmatlas/v2023_02/metadata-rc2.parquet). +You can load the file with pandas: `df = pd.read_parquet('metadata.parquet')`. +The dataframe has 773,846,840 records, and the file size is around 16GB. +This dataframe has 10 columns: +- `id` is the MGnify ID +- `ptm` is the predicted TM score +- `plddt` is the predicted average lddt +- `num_conf` is the number of residues with plddt > 0.7 +- `len` is the total residues in the protein +- `is_fragment` indicates whether the protein sequence is identified as a fragment in the MGnify90 sequence database. +- `sequenceChecksum` is the CRC64 hash of the sequence. Can be used for cheaper lookups. +- `esmfold_version` is the version of ESMFold, matching the model accessible as `esm.pretrained.esmfold_v{0,1}` +- `atlas_version` is the Atlas version where this structure first appeared. Note: some of the predictions appearing for the first time in `v0` are also part of Atlas `v2023_02`. +- `sequence_dbs` is the metagenomic source databases where this structure is part of, as `MGnify90_2022_05`, comma-separated if it exists in more than one release, as `MGnify90_2022_05,MGnify90_2023_02`. + +Proteins longer than 1280 residues were not folded. To select only the records without missing structures use `df[~df.plddt.isna()]`. + +We recommend using `s5cmd` or `aria2c` to download files (can be installed via conda package manager). +To download any of the structures provided, you can use this `aria2c` command: +``` +aria2c --dir=/path/to/download/to --input-file=url-file-provided.txt +``` + + +# Full database + +We separate the database by pTM and pLDDT. +This will allow you to download structures based on your needs - for example you can choose to download only the most high confidence structures. +Structures are provided by the bins given in this repo under [v0/full/bins.txt](v0/full/bins.txt) and [v2023_02/full/bins.txt](v2023_02/full/bins.txt). +For example, the foldseek database containing ptm from 0.60 to 0.70 and plddt from 0.80 to 0.90 is named `tm_.60_.70_plddt_.80_.90.DB`. +The data are given as bundles of 500k or 1M structures each. + +* **Bulk Predicted structures**: see `{v0,v2023_02}/full/tarballs/`. The URLs for all shards of a single bundle will be in e.g. [v0/full/tarballs/tm_.60_.70_plddt_.80_.90.txt](v0/full/tarballs/tm_.60_.70_plddt_.80_.90.txt). The URLs for all tarballs across bins and their shards is available under `{v0,v2023_02}/full/tarballs.txt`. +* **Foldseek DBs** `{v0,v2023_02}/full/foldseekdb/` and `{v0,v2023_02}/full/foldseekdb.txt` +* **Bulk Embeddings (NEW)** under `{v0,v2023_02}/full/esm2_embeddings/` and `{v0,v2023_02}/full/esm2_embeddings.txt`. + * Note: Individual LM embeddings can be fetched via the API endpoint `/fetchEmbedding/ESM2/:id` as described on + + +# High confidence MGnify30 structures + +The high confidence MGnify30 structures are built using this procedure: +1. MGnify90 is clustered down to 30% sequence similarity with `mmseqs easy-linclust --kmer-per-seq 100 -cluster-mode 2 --cov-mode 1 -c 0.8`. +1. Structures are filtered to >0.7 pTM and pLDDT +1. Structures are sorted by `pTM * pLDDT` and the best from each cluster is chosen as the representative. + + +We provide the urls to v0 in [v0/highquality_clust30/tarballs.txt](v0/highquality_clust30/tarballs.txt) and [v0/highquality_clust30/foldseekdb.txt](v0/highquality_clust30/foldseekdb.txt). + +As a reminder, please use `aria2c --dir=/path/to/download/to --input-file=v0/highquality_clust30/foldseekdb.txt` to download the foldseek database + +The sequences corresponding to the high confidence structures can be downloaded from . + +# Citation +If you use any of the ESM Metagenomic Atlas data in your work, please cite + + +```bibtex +@article{lin2022evolutionary, + title={Evolutionary-scale prediction of atomic level protein structure with a language model}, + author={Lin, Zeming and Akin, Halil and Rao, Roshan and Hie, Brian and Zhu, Zhongkai and Lu, Wenting and Smetanin, Nikita and Verkuil, Robert and Kabeli, Ori and Shmueli, Yaniv and dos Santos Costa, Allan and Fazel-Zarandi, Maryam and Sercu, Tom and Candido, Salvatore and Rives, Alexander}, + year={2022}, + journal={bioRxiv}, + note={bioRxiv 2022.07.20.500902}, + url={https://doi.org/10.1101/2022.07.20.500902}, +} +``` + +## License + +ESM Metagenomic Atlas (also referred to as “ESM Metagenomic Structure Atlas” or “ESM Atlas”) data is available under a CC BY 4.0 license for academic and commercial use. Copyright (c) Meta Platforms, Inc. All Rights Reserved. Use of the ESM Metagenomic Atlas data is subject to the Meta Open Source [Terms of Use](https://opensource.fb.com/legal/terms/) and [Privacy Policy](https://opensource.fb.com/legal/privacy/). + +If you make use of a structure predicted by ESMFold, please cite the following paper: + +``` +Zeming Lin, Halil Akin, Roshan Rao, Brian Hie, Zhongkai Zhu, Wenting Lu, Nikita Smetanin, Robert Verkuil, Ori Kabeli, Yaniv Shmueli, Allan dos Santos Costa, Maryam Fazel-Zarandi, Tom Sercu, Sal Candido, Alexander Rives. +Evolutionary-scale prediction of atomic level protein structure with a language model. +Science 379, 6637 (2023). +https://www.science.org/doi/abs/10.1126/science.ade2574 +``` diff --git a/esm_scripts/atlas/v0/full/bins.txt b/esm_scripts/atlas/v0/full/bins.txt new file mode 100644 index 0000000000000000000000000000000000000000..54ab0908a6ae6a5f031c4594d3aaffdd15e40e4f --- /dev/null +++ b/esm_scripts/atlas/v0/full/bins.txt @@ -0,0 +1,72 @@ +tm_.40_.50_plddt_.40_.50 +tm_.40_.50_plddt_.50_.60 +tm_.40_.50_plddt_.60_.70 +tm_.40_.50_plddt_.70_.80 +tm_.40_.50_plddt_.80_.90 +tm_.40_.50_plddt_.90_1 +tm_.40_.50_plddt_0_.40 +tm_.50_.60_plddt_.40_.50 +tm_.50_.60_plddt_.50_.60 +tm_.50_.60_plddt_.60_.70 +tm_.50_.60_plddt_.70_.80 +tm_.50_.60_plddt_.80_.90 +tm_.50_.60_plddt_.90_1 +tm_.50_.60_plddt_0_.40 +tm_.60_.70_plddt_.40_.50 +tm_.60_.70_plddt_.50_.60 +tm_.60_.70_plddt_.60_.70 +tm_.60_.70_plddt_.70_.80 +tm_.60_.70_plddt_.80_.90 +tm_.60_.70_plddt_.90_1 +tm_.60_.70_plddt_0_.40 +tm_.70_.80_plddt_.40_.50 +tm_.70_.80_plddt_.50_.60 +tm_.70_.80_plddt_.60_.70 +tm_.70_.80_plddt_.70_.80 +tm_.70_.80_plddt_.80_.90 +tm_.70_.80_plddt_.90_1 +tm_.70_.80_plddt_0_.40 +tm_.80_.90_plddt_.50_.60 +tm_.80_.90_plddt_.60_.70 +tm_.80_.90_plddt_.70_.80 +tm_.80_.90_plddt_.80_.90 +tm_.80_.90_plddt_.90_1 +tm_.90_1_plddt_.70_.80 +tm_.90_1_plddt_.80_.90 +tm_.90_1_plddt_.90_1 +tm_0_.40_plddt_.40_.50 +tm_0_.40_plddt_.50_.60 +tm_0_.40_plddt_.60_.70 +tm_0_.40_plddt_.70_.80 +tm_0_.40_plddt_.80_.90 +tm_0_.40_plddt_.90_1 +tm_0_.40_plddt_0_.40 +backfill_v0_tm_.40_.50_plddt_.40_.50 +backfill_v0_tm_.50_.60_plddt_0_.40 +backfill_v0_tm_.70_.80_plddt_.70_.80 +backfill_v0_tm_.90_1_plddt_.80_.90 +backfill_v0_tm_.40_.50_plddt_.50_.60 +backfill_v0_tm_.60_.70_plddt_.40_.50 +backfill_v0_tm_.70_.80_plddt_.80_.90 +backfill_v0_tm_.90_1_plddt_.90_1 +backfill_v0_tm_.40_.50_plddt_.60_.70 +backfill_v0_tm_.60_.70_plddt_.50_.60 +backfill_v0_tm_.70_.80_plddt_.90_1 +backfill_v0_tm_0_.40_plddt_.40_.50 +backfill_v0_tm_.40_.50_plddt_0_.40 +backfill_v0_tm_.60_.70_plddt_.60_.70 +backfill_v0_tm_.80_.90_plddt_.60_.70 +backfill_v0_tm_0_.40_plddt_.50_.60 +backfill_v0_tm_.50_.60_plddt_.40_.50 +backfill_v0_tm_.60_.70_plddt_.70_.80 +backfill_v0_tm_.80_.90_plddt_.70_.80 +backfill_v0_tm_0_.40_plddt_0_.40 +backfill_v0_tm_.50_.60_plddt_.50_.60 +backfill_v0_tm_.60_.70_plddt_.80_.90 +backfill_v0_tm_.80_.90_plddt_.80_.90 +backfill_v0_tm_.50_.60_plddt_.60_.70 +backfill_v0_tm_.70_.80_plddt_.50_.60 +backfill_v0_tm_.80_.90_plddt_.90_1 +backfill_v0_tm_.50_.60_plddt_.70_.80 +backfill_v0_tm_.70_.80_plddt_.60_.70 +backfill_v0_tm_.90_1_plddt_.70_.80 diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings.txt b/esm_scripts/atlas/v0/full/esm2_embeddings.txt new file mode 100644 index 0000000000000000000000000000000000000000..628a950e06ac1dd1baf121d958975b9f885b810f --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings.txt @@ -0,0 +1,673 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_46.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_47.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_48.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_49.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_51.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_52.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_53.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_54.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_55.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_46.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_47.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_48.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_49.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_51.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_52.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_46.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.40_.50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.50_.60.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.60_.70.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_0_.40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.40_.50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.50_.60.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.60_.70.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.70_.80.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_0_.40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.40_.50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.50_.60.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.60_.70.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.70_.80.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.80_.90.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.50_.60.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.60_.70.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.70_.80.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.80_.90.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.90_1.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.60_.70.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.70_.80.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.80_.90.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.90_1.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.70_.80.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.80_.90.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.90_1.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_.40_.50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_.50_.60.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_0_.40.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e5a51a8ffa8f22becf46c0d48dcf6e14788de9 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.40_.50.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5b7da87f813f35b4262ca9e7529cef860b2daca --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.50_.60.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..96d200f4d2bd488e41663817536c8b1827dfdb62 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_.60_.70.npz \ No newline at end of file diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eed35674a70a50813cc06f6602e5424b6c6eb35 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.40_.50_plddt_0_.40.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f52712c5fab9ee8c1ece5c5b5a3ea504f4f5933 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.40_.50.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff405c5d958ed4fa908ad4ec8c4d5b9c66a9e64c --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.50_.60.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f72cf04f5fb31247977d23bdf8a99b81856e4231 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.60_.70.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..439abfe5759363c68fa3bb02f2ce076cf8751d9f --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_.70_.80.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cb042739356ff0c4cd77ae7acd668da68fc1c48 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.50_.60_plddt_0_.40.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..241d9ab71e4e420a69613a47ad585f553331da8b --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.40_.50.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..80342b16537a3e42fd0f7fb8ecb0c628f15ab73e --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.50_.60.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..a49e714f0be53d3868354d39d4ed169a6c361791 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.60_.70.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a1d8245bc96087a14acd5b384a7bcb9e0862447 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.70_.80.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..4245aa4ddec96452c5320b68ff14d815509799d1 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.60_.70_plddt_.80_.90.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb2dd6a1c150aca96c500c81465459682001b372 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.50_.60.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6799f1b81ef28b0268eb04884aa59b5b791952c --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.60_.70.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..beb0338ea90b0001b5d5914c19d34590f17d368d --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.70_.80.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..55c330cdb94d242afc78a7d87ad58c61506ca5e5 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.80_.90.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b3d08fe687076acdba9c417b6cbe330e07c6dba --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.70_.80_plddt_.90_1.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..84219e0a4900eb7bca5788564bcc6c879c336d9b --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.60_.70.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f853bf4691b47996d64a070104c27744a298113 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.70_.80.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..d51624a58a421015e5616d42bd3c5b208cfa2c80 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.80_.90.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f9985fc32430c39d59c763eb881f192413bf97a --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.80_.90_plddt_.90_1.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdde2f68f875107562af9960afc86c4348d7c592 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.70_.80.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d90a51b78f81e360b993d9cfb4882a7a71eba3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.80_.90.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..0603bbd1ab89975d245fdaab397eaa7cd6ef49d4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_.90_1_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_.90_1_plddt_.90_1.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2342f96057bec135b5e8eff8500955686ab166ef --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_.40_.50.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c029e62f22ead0c782f9a228b85cb2bc37c5c32f --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_.50_.60.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7396cab7a36bf3abbccf0abd5b8ad50ce66e9202 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/backfill_v0_tm_0_.40_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/backfill_v0_tm_0_.40_plddt_0_.40.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..467e8338b704dd7bf84fcf4488307637ba05a3b3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,3 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.40_.50_02.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ba4dd8281418911a96e426cf88ec69f2702deac --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.50_.60_13.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..6843a41eaf6393222e6c18a6946dfc50be128c05 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,22 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.60_.70_21.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..106d05522891e9bf2902660e74fff140853dc9b8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1,19 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.70_.80_18.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b9abe157f2e797528ed9d233ce06468a0e308a3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.80_.90.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.80_.90_05.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..85e714e709123475ce74246c79d46201990d9937 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_.90_1_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dee61d55a3136b43095f0cb0c218c260edf0986 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.40_.50_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..311579d7d0383e74a10514c4ce0f25ea1a217d50 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.40_.50_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..880ccb6b5e6a1ea1e54ae4d9f07462eadc2f784b --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.50_.60_05.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bde7e473f3fcd3dfcd70b3a693f73292e9ea3eb --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,18 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.60_.70_17.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e49ce07f6e64ff488dee09a87bcd77588882332 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,26 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.70_.80_25.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a4d0f0603e6c88937dac1feb48af686d7d6782 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.80_.90.txt @@ -0,0 +1,16 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.80_.90_15.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7abad443357f4f9b51637ad6ae218dfa7abf1fc8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_.90_1.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_.90_1_01.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0f88a5f330066ba5d56ffefbbec2e5fe14e0d66 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.50_.60_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a7e339140784c5b0c750625e761aac3240e08a4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.40_.50_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..64810aa8d4a0f920a8c67b8305e2a6599de48de3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.50_.60_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..508f1394bdbf42d190f5070aef711758bb882368 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,11 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.60_.70_10.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1bf7cc33a1b6826c2ac125550b665d1aa586731 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,27 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.70_.80_26.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..eeaf4d7546ad7f29ecf38141bc3249c588b759cb --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,29 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.80_.90_28.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..63e03941f10587486f2f3b970bb7e12b2d7ccd91 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_.90_1.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_.90_1_05.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..61fca42c7408d0e27b89d70951bd53a4d2382b21 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.60_.70_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..0221d1b49638ce9d5656e39c52ea2843d5c2e4fb --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.40_.50_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..0154a0e5fbaa91704cda6af20d4f2f1745eb6e61 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.50_.60_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..058e429a6700e54af921888459388d52b3b60ba4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.60_.70_01.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2520178f42ed91d3f7a2349732d9636456794c20 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,22 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.70_.80_21.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7808fdbfd62153ecc67c0c5f9f6580a54fbf8dd --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,44 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.80_.90_43.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e21cb8343194e694ef03d5fd708f5fa41ef33583 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_.90_1_13.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdd7ce27db53c3923cb1e2568de62066e12d0816 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.70_.80_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fa34bbdcb0866706c66f7513eabd6471038ca4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.50_.60_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7710e7f2b46251cc7eef140862739111a41cfe9f --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.60_.70_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..21869305e5740b91aceb0e6225c01371b1cb2097 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.70_.80_03.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d2ab5cede4f51df497231adfdbce549945bcf66 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,46 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.80_.90_45.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f0d9599ed1fc584c808ef350c7f40b1f9a123dd --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,37 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.80_.90_plddt_.90_1_36.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..23e40a78fee6c98bd43796f7b0a5cd0c47cf39f2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.70_.80_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dbb42d62d9f49cb3b008ad845d1daff51528c9d --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,5 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.80_.90_04.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe0caeea81e381715b5d48d844357c0606f8184f --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,56 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_46.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_47.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_48.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_49.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_51.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_52.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_53.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_54.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_.90_1_plddt_.90_1_55.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9215b7ab9285669f465df0cf8737d38868815dae --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,53 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_46.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_47.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_48.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_49.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_50.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_51.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.40_.50_52.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..932628cf22ffe4f5bdce29fea26b2d5b0239ad97 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,47 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_45.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.50_.60_46.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c7c3d1322586702dc3672292da00c294e960b72 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1,34 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.60_.70_33.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..528b0f504342ec6a4864b1f4e7aec5bd3672b07b --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1,13 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.70_.80_12.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..46210a25a665413f7706e9ad4276ce7e0a51fb44 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.80_.90_01.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9e46dc889d834da09460cc63da014bf5fbde0f7 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_.90_1_00.npz diff --git a/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa806ad04b4e84054bd91d156535a3fbc4dae730 --- /dev/null +++ b/esm_scripts/atlas/v0/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,46 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_28.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_29.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_30.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_31.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_32.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_33.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_34.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_35.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_36.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_37.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_38.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_39.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_40.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_41.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_42.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_43.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_44.npz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/lm_reps/tm_0_.40_plddt_0_.40_45.npz diff --git a/esm_scripts/atlas/v0/full/foldseekdb.txt b/esm_scripts/atlas/v0/full/foldseekdb.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bb058cb2b58afcfdf33dd2f1e9302ce027bf4be --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb.txt @@ -0,0 +1,1008 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..674f567e405eb70f7e16175eb9fbc28a0797af70 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..14b7a20f70b649e8fb20721cfc68580791a38582 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a51c7956c7d2efa6006b9b473498ac13d554c99 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d988b5b2682d3a23bca38999f9db76629f16155 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.40_.50_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..159fdd8dc92cded81b157f90651724978ad01733 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..0219372104008d8a2e469485d07b149825c9d99d --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..d82f44d26f34abd4a5f322bb39ef30a7cd0acb13 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..612b928d95914f5a6a71d66aa079e88d255a991b --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0e1127ea9b40667c70da9e7ab9031017cc169d1 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.50_.60_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f3ec45b7f9cd305ca3b47313376eb98503f1a9a --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d18fa673992580f4cb6082be8b7bcb0db6be8bf --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb943f244ba0b9149906b1bfb323646b544729e3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdeda144ad043bc61ca61ee1c4ea4a861f8f71c0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..af1c5eab451a82f4065b77ae09a7210821a70abd --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.60_.70_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..63b6e0d31e66adf71480db83356df6de56f26592 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a103aacd98049b60d7ad9896f8376f529c9613f --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3db6ad3ce422996090a786ef1e711acd0917970 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a492146523a1337c86ad17d1bce3d8685273b38 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de738408d261cb293a73bb637096b9a50fc557e5 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.70_.80_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..817202b9c890f467e8d2878000d74cdf03a91352 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..78793e44a20f137c7b5f8961eb04981ce91048c2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..7371bb9d57b01b082ab91510d2633c2538552de8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..81863f87deffaf947f98f7c639e5ec19dcf5802c --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.80_.90_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0e5b63bf49b794ce8e13f54f8f13e152a5398d4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..63f9260d0076175533660b26941c5ae172100158 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2913c8b3038bea0903f7efb3d25db6cdcec0a07d --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_.90_1_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cde06e6acda19d3c1a8750b4fe827d976f513186 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f377614f6dfa813a14e9501d6b05c2fa28a9b816 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..693244455aaa909afbba04a2538b645384af4320 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/backfill_v0_tm_0_.40_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..722c6948783887e80a8f1f2d778b027bfb72b4dc --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..511968cb39c5762912b2932641792dd756cb15f0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e3c750554d3149e5fe89940350fdae02ced4e46 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce2811f4903f9440b8b1bcfe93f339d9ab2aaf6f --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..038c18227c37a4f3597c2c100a6024776e5888a1 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..0785233e0d61abf4b70134b2c4682763034220f2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8277ed3b3ca79ceeb9539ec249c32505251b3dc --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.40_.50_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f381a3d0bb0beb79358f4939e9269b83f1b0368 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca1e09dc8aaf9a94bd5e69d3227e82bd39325dbd --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..c227f8e27b6aacdd885db62b62a84cfd0d31d1a8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..32dc0dc183278a0190292e0be5a76fcdcb3511ab --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..999d95e072e8c184cc3b4e23feb64bd791b77a09 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c4fe4a89d92889a1768fab5137d035fbb027f43 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dd7896d875403c5eccf321048f75a297823640e --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.50_.60_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..677e6bd7d818892f833a0b1a5330e7d5fb0b83e2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..75a3c721cabff8ed6279eef6d321e398891dc6ed --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7299784aa0165eed7013cb9e7060024d29cb7f4a --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..5716d0cc289064134a6568e48a71b4feca159638 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..87be7e235cb724801056a1b23f276aee71e1f000 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..41ee9ee939c7b0e992b4f758ec7a512768be45ec --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee1ff68ebdbacd9cf20943137ff47be62ff04855 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.60_.70_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b8a493772f9ffe437a9ee90c8fe9ce044418ec2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9764dd507d573d7e6c3cb5f7dd23e738792ee497 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7495b0bcd90063ee091ed89be0635e3c1687136b --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e75926f5332b7ffeb225fbc1faae7ac5d9e39c9 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f705b108915f11302c610bddbf218420eceb1fd5 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ed5517e177bc3b265bd898864e04dd30776123 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb324b9b19cc05cb0944d0adac675db6d78cb78 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.70_.80_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..56c2355aa5017bf3f6223e806064d3b9eebe4b3d --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a35ceb9c9edef405fa4aebafaea0a598dcdd6e6 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fb1e7ac1bb924be848190c6e491de7edad808e5 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e9ffcd230fe03953d6a4b50edb4440fa79a0f75 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d00af0f33c0f8d47f2a723037e338686b8d7b71 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.80_.90_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a1208881877f7ee6880465d6f81ceb7de503960 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..92977fd5424a01d37ec338fcd82f91a3b99a54a6 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf7be615cfaf3e450b01b55a9b267915546c7baf --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_.90_1_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab83fc8fffe79007f82b4e46384a38e97f579a0c --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.40_.50.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..083c50e972bd1b6e01272cd5baba1bb74057394c --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.50_.60.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..981fd7b74a581110324db0945331e548906c2ab6 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.60_.70.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bc0b3c636ff5826b31d8ed86a985fad7069c8e7 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.70_.80.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba7726f031db5e068ba94cb52618c3702228d8ce --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.80_.90.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c14f27f772ebceec7227ce1d2a6a690d2e79da55 --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_.90_1.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..11683ec8cd29f0d223f396c825a6f4a4c07c3b1c --- /dev/null +++ b/esm_scripts/atlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/full/foldseekdb/tm_0_.40_plddt_0_.40.DB_ss.index diff --git a/esm_scripts/atlas/v0/full/tarballs.txt b/esm_scripts/atlas/v0/full/tarballs.txt new file mode 100644 index 0000000000000000000000000000000000000000..82dc4afa99fb80bf2fc4b1cddb1978661cd61777 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs.txt @@ -0,0 +1,673 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_46.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_47.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_48.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_49.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_51.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_52.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_53.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_54.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_55.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_46.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_47.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_48.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_49.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_51.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_52.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_46.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.40_.50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.50_.60.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.60_.70.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_0_.40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.40_.50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.50_.60.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.60_.70.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.70_.80.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_0_.40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.40_.50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.50_.60.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.60_.70.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.70_.80.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.80_.90.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.50_.60.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.60_.70.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.70_.80.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.80_.90.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.90_1.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.60_.70.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.70_.80.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.80_.90.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.90_1.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.70_.80.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.80_.90.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.90_1.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.40_.50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.50_.60.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_0_.40.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9397915e5283cc9dda6c930878257e4ff8fa204a --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.40_.50.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..70ab9c4d6235ad1897c3a35b15dd9235650b9c79 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.50_.60.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfe016610343f06700fca18461d79fb0dfbc4012 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_.60_.70.tar.gz \ No newline at end of file diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..854628a5e070199182aad19c9ac27dd23c615bdd --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.40_.50_plddt_0_.40.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..100e6a602f3f86e9d628218c0b9a862f80e887b9 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.40_.50.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c960364738a7efb82daaf6ed845a3400d5a3988 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.50_.60.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..14f59de2011f6c3e3e9b92b6165da8b900c7310f --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.60_.70.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..b315fdf23dad08622f719357d639c9490c112e7f --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_.70_.80.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..836dc04160baa6e465fe6c02308c4d8680a07144 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.50_.60_plddt_0_.40.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..f923a14fae85cf1ac3588551869f033dc749dfd0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.40_.50.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd5f38f5dfc1f6f14259b4adbea0f9759e75ea9f --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.50_.60.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4471965f0c3867ccf217ecdb6cd4744da150b091 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.60_.70.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f1694fc9dbd9823569f069ecf567bc9e8499f9d --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.70_.80.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..45299ef1c1252d1fc4b68012633e70966074477e --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.60_.70_plddt_.80_.90.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..060876dce93b89154c1d1bf330ffd17c788d1a48 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.50_.60.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..d816545b81e90ba38c802f631b7127d2253ea8c7 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.60_.70.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f50b9eba6c9ee061425438652b1d7045ee416dbf --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.70_.80.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9908aaa2ff9ea2af02d650a3f8732618c85f9bd4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.80_.90.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e0ce81b9792345d10e5f46f6cdba674df7b5bb9 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.70_.80_plddt_.90_1.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..946d3b923a53d45cf4e093c9173f3f6000502e1a --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.60_.70.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..74209407ba426e7415faa51faf01993546ba3c08 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.70_.80.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2becfae0d61158dafbcaf1e43ad5b78d5b0ae7e8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.80_.90.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..72574895dcdd98dd7a844c8bf4573d968661221c --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.80_.90_plddt_.90_1.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0739e2bb2166c00e7a8970d1e6cde79a22c8f921 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.70_.80.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..536f4ca679ab1b76a9492c5a9a11004410bddd89 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.80_.90.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ce79ed80fcb444f9fdc76ab1bc66fcae4f73d3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_.90_1_plddt_.90_1.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ada410dada14febf820b345a39e075b0c87bf18b --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.40_.50.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b8dba55636ab2a5d578161c17d19234c6a0ef8f --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_.50_.60.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a87a51ede76495c9b035334ad8f19f5b8ed1929 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/backfill_v0_tm_0_.40_plddt_0_.40.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..5062d749570bd0e95b5e85c4a6f9d29720c249af --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,3 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.40_.50_02.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a041ef455eb4ecc4153cde01fafaa314207cff4 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.50_.60_13.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba60566601ea82f4053cbe2bc762b98d00b1c3d5 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,22 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.60_.70_21.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..6833642640dc45c2f8c82bb83c9069a42a6a229b --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1,19 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.70_.80_18.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c7d582c1739f522f9bde72d576e161a0f5532b0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.80_.90_05.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e91ea64227ad3a8fa30b96b28394256946ae1942 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_.90_1_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b849a605bfba26b85eca7bc23e956c4899accbcd --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.40_.50_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..f723a2f14f2bab4a529faf188fd95c76a3134507 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.40_.50_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ae624db469ea945607bc4cb54ddd9a3d834d982 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.50_.60_05.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..76cf5557f98adfa5208db1a49b94a760a3b7f9ef --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,18 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.60_.70_17.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5b1660548f4c9aafe45dd1a7cf78df7e5cb6199 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,26 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.70_.80_25.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..82c16ba7c0949024542b782b2b3fafdaa4ac8c20 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90.txt @@ -0,0 +1,16 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.80_.90_15.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..79dd7240ecee41ce5d1620e05e7c9dbd57a38106 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_.90_1_01.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..17f5b79cd172a89df7a15dd7b29c6b5433be8870 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.50_.60_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..51ff39476094ed7e6b8f5feac293127c28650535 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.40_.50_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d04c64011ee1ca574070dafe348dd4276c59193 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.50_.60_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..d940a1fe3f8358e3481ca1c2ef1675e8be4e22d0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,11 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.60_.70_10.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..66b7e19198c0f6c05bc5648fb41a7af38e9965d3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,27 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.70_.80_26.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..06e897ecd1ce6cbb3cdc7e1bec849ea2e5a89a91 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,29 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.80_.90_28.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..74987395a98b25e33f037611e764e7f2cf12b36d --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_.90_1_05.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed61865e099851b3cec8cd02cadd0a2d4f45ec77 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.60_.70_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..26b956da498a0f165e5c1c044c9fecf11204394f --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.40_.50_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..671f2e954eb0859f1a395ff02c05d4fcb9426186 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.50_.60_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..30f8c7595e9f86014cc319b938e657fbbd54d9ae --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.60_.70_01.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..7916a814e37cf07a58618379cd13d17dde51c1b0 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,22 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.70_.80_21.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9e89126bddcc422cd88307dab99a33cca041524 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,44 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.80_.90_43.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4258d24adbef65ebe10448a75c38340fdd42ad3 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_.90_1_13.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..85b2edd85d15337dd6a8953978935f289f524214 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.70_.80_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cccf47c61925460b282ecdb81139cee16c579df8 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.50_.60.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.50_.60_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..73d6b1ec5ccfe8fced34406b1980bdce66ab4192 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.60_.70_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cb7b33266e2c7ee6596cb7faa3af05b7ffd11ba --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.70_.80_03.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..d15627fa19e251efbc60585e62c10b04a89d586e --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,46 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.80_.90_45.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b38ea49654f68f30768b11865691b5a3a8969dc2 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,37 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.80_.90_plddt_.90_1_36.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b6381df841ba7e3bd80503ed97948ef02aba91 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.70_.80_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f62de21220ed171519576418d31cf898c2b3ba94 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,5 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.80_.90_04.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..836ada0b57da214381306514fa6d7358ec47f70a --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,56 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_46.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_47.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_48.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_49.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_51.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_52.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_53.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_54.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_.90_1_plddt_.90_1_55.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca2a0946f1d2ee49c09ce0e4f7c0698a6e7967b6 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,53 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_46.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_47.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_48.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_49.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_50.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_51.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.40_.50_52.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..71b96df1516a303981aa4fe5c17b0bbba85524ce --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,47 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_45.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.50_.60_46.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..54718f341dcd4f9fbbf910f2d7fb148051595b60 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1,34 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.60_.70_33.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..052e60922b571f3c7aa82fb3c0af16bee4e697c6 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1,13 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.70_.80_12.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc11376bc7b4ff4efdb65b68e52b9020d8f0658 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.80_.90_01.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.90_1.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..be7f9f254268728cb05985a84f42d562792b0d05 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_.90_1.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_.90_1_00.tar.gz diff --git a/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..84818ce30f8993ada9af56788e5645a2cb73a737 --- /dev/null +++ b/esm_scripts/atlas/v0/full/tarballs/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,46 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_36.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_37.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_38.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_39.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_40.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_41.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_42.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_43.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_44.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/full/tarballs/tm_0_.40_plddt_0_.40_45.tar.gz diff --git a/esm_scripts/atlas/v0/highquality_clust30/foldseekdb.txt b/esm_scripts/atlas/v0/highquality_clust30/foldseekdb.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d70b30207b8953d60d151cf4df1aa9445c0dc3 --- /dev/null +++ b/esm_scripts/atlas/v0/highquality_clust30/foldseekdb.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30 +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30.index +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30.lookup +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30.source +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ca +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_h +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_h.index +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ss +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/foldseekdb/highquality_clust30_ss.index diff --git a/esm_scripts/atlas/v0/highquality_clust30/tarballs.txt b/esm_scripts/atlas/v0/highquality_clust30/tarballs.txt new file mode 100644 index 0000000000000000000000000000000000000000..599b768fecdcc2fb8f63ffddc69c74364ef1d65c --- /dev/null +++ b/esm_scripts/atlas/v0/highquality_clust30/tarballs.txt @@ -0,0 +1,37 @@ +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_28.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_29.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_30.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_31.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_32.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_33.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_34.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_35.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v0/highquality_clust30/tarballs/highquality_clust30_36.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/bins.txt b/esm_scripts/atlas/v2023_02/full/bins.txt new file mode 100644 index 0000000000000000000000000000000000000000..91d06a92c7107a354fb20bf8b8f84328a79e3d32 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/bins.txt @@ -0,0 +1,35 @@ +tm_.40_.50_plddt_.40_.50 +tm_.40_.50_plddt_.50_.60 +tm_.40_.50_plddt_.60_.70 +tm_.40_.50_plddt_.70_.80 +tm_.40_.50_plddt_0_.40 +tm_.50_.60_plddt_.40_.50 +tm_.50_.60_plddt_.50_.60 +tm_.50_.60_plddt_.60_.70 +tm_.50_.60_plddt_.70_.80 +tm_.50_.60_plddt_0_.40 +tm_.60_.70_plddt_.40_.50 +tm_.60_.70_plddt_.50_.60 +tm_.60_.70_plddt_.60_.70 +tm_.60_.70_plddt_.70_.80 +tm_.60_.70_plddt_.80_.90 +tm_.60_.70_plddt_0_.40 +tm_.70_.80_plddt_.40_.50 +tm_.70_.80_plddt_.50_.60 +tm_.70_.80_plddt_.60_.70 +tm_.70_.80_plddt_.70_.80 +tm_.70_.80_plddt_.80_.90 +tm_.70_.80_plddt_.90_1 +tm_.70_.80_plddt_0_.40 +tm_.80_.90_plddt_.60_.70 +tm_.80_.90_plddt_.70_.80 +tm_.80_.90_plddt_.80_.90 +tm_.80_.90_plddt_.90_1 +tm_.90_1_plddt_.70_.80 +tm_.90_1_plddt_.80_.90 +tm_.90_1_plddt_.90_1 +tm_0_.40_plddt_.40_.50 +tm_0_.40_plddt_.50_.60 +tm_0_.40_plddt_.60_.70 +tm_0_.40_plddt_.70_.80 +tm_0_.40_plddt_0_.40 diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc18fbdd96073621607c3516dd4531be8e3513a --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings.txt @@ -0,0 +1,149 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.40_.50_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_28.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fba9f57126fdcdab74283fbd120c65e0814f174 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.40_.50_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..45b6e34602a613fcb62dc1c1f177d6223fb4d136 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.50_.60_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..a73833dc78a240ebb828421969a3252c0080bae1 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.60_.70_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..eeb0f58afc927281a69602cf98de4f925f7f08da --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_.70_.80_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b32d6a5d3378390c5d0663079864fac5813003c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.40_.50_plddt_0_.40_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e40d9f7da86b3cc2c6c4d56971fdee983ab81f2 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.40_.50_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..15b3962d96a4bd69ba37246e0735b3365e97733c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,3 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.50_.60_02.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ca52f7869dd1f3e3e3f4aec4eb7f3b059dcc5d6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.60_.70_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..acfe3f6d2d0f7d2ff007586650acb070233864ab --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_.70_.80_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f58732ae0713c30fa353e535b51bbca512aab78 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.50_.60_plddt_0_.40_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4c4e91f32778253a5b6cfac811dc6e7b9b922bc --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.40_.50_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8532f2c912b57379c02f8c5bdb012ec06f64e6e --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.50_.60_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..edfacdfb1748a25bb67180916755c1ddefcde06a --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.60_.70_05.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2c6c6a9d353ce0aa47db58795128c4675f9af28 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.70_.80_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..879c57fc7ddc7a03909387c5365a54e0bc59f362 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_.80_.90_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..26287bde5285c011cef84e55dbffae5671e9cc01 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.60_.70_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1caaee754c84b82b4c551ce2fb12f79f3fa619e7 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.40_.50_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2a477fc9a061f971b2878daeacccae2bf0d384 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.50_.60_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..c070cb6be351e06a1893086b5a8786f51f3b98ec --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.60_.70_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..6eea04cf880d7776e7f26d5f85fb80392036060c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,13 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.70_.80_12.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..52722f57c7f80fba5c15ef0cf27f764dd7685946 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.80_.90_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a972d2a71cf71a5734330fb3c5770a614b50e666 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_.90_1_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..17a2ded59e97577bdc423c39995a3c9fd1819e04 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.70_.80_plddt_0_.40_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..20cb6edd7d04a80ebd66626059287125b238144e --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.60_.70_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.60_.70_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e9556a03fcbb3e98d886c024ce3652317d891bf --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.70_.80_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0012820abc4143718522dbe5f73e92d88105c50e --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,25 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.80_.90_24.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24566e2afbcb40e424947691a4297f40196c4c4f --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.80_.90_plddt_.90_1_03.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5d43bd232b6259cfb7e0048e64dfa32ab4c0ddc --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.70_.80_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.70_.80_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecbfcd86c743b1af4a191fb9a15733e239cc6173 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.80_.90_03.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0e447fca68866c73513c6a1ad2c62e9274ce5ff --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,17 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_.90_1_plddt_.90_1_16.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9661609e24f3dd3514bdeaf06ef592daba936d18 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.40_.50_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.40_.50_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..545baaf9aea25280c13d2e8913f5ef7d18299aca --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.50_.60_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.50_.60_01.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..91f85968304f646b58ba3fd85f8f6c55db5f3de9 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.60_.70_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..593ed6e9c4159e307f30e4e5168c37b314c29186 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_.70_.80_00.npz diff --git a/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..51d38bcd6980e88249cd70fec025a57de0847fec --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/esm2_embeddings/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,29 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_00.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_01.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_02.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_03.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_04.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_05.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_06.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_07.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_08.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_09.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_10.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_11.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_12.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_13.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_14.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_15.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_16.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_17.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_18.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_19.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_20.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_21.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_22.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_23.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_24.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_25.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_26.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_27.npz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/lm_reps/tm_0_.40_plddt_0_.40_28.npz diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bf6bddf012b844696499d214b9ba4b423127dc5 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb.txt @@ -0,0 +1,2086 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..79d4ab95f60b36a1296e6b7ed50acc709768577d --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.40_.50_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5305b5f33fe88db32d7a0e63095afa021be9cbd6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.50_.60_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a1a1af17078f7ad7343cc93b5dba701cbd3cc1e --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.60_.70_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4475dbaf129fd67402fd900eaa23449311bbebb --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_.70_.80_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c8577a232d542d2a3cbdf98787e5592760328a6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.40_.50_plddt_0_.40_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..aec88e5eb5c158e51f436920945388173d366b3b --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.40_.50_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..59118f433078a7fdbfb8b5e30c9e564e66168f9d --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,56 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.50_.60_02.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4acc9c1d4f155b73cc451f99fb9f80f9da563598 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.60_.70_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..b81516af87445c885b713bbe3ef9a5436d60ef47 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_.70_.80_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..d37d68662f0f00e92903e85b47ccb3851de23f73 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.50_.60_plddt_0_.40_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..270977449c2b44118547e1987358ff7ff46dc32a --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.40_.50_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e1d7c0680baa635cfb28bff4cf75c53d2084c24 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.50_.60_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f19372e1085e3b3a47600ea467d0281c703ff1 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,84 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.60_.70_05.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..81502f8125f43fc85779dafc626dad72f6ce14d6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.70_.80_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..619d35363633d78b0178895a0f9edbb0aab0c0b0 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_.80_.90_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..aafc5cff7f5a5d544ba444524dce4f8ae0654de5 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.60_.70_plddt_0_.40_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_50.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cbe5a3ad40ed033fd9b688b5180174b8887bebb --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_50.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.40_.50_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..61a9f00be5b750fc6bc36e4a5979c5a707fab439 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.50_.60_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecac9416827a4f7755feb32ca7d7b489234b524b --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.60_.70_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c69e92e6f6e8e2c467be643906730e022ecc8bb9 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,182 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.70_.80_12.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..db79afe97fc67a02136473be576f37928bfc55a9 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.80_.90_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c41bbe8d7d2f0ef5fb9f955f5483f3660eae2e34 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_.90_1_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cd8a8db1c28b96f18ed767a5a6f36c38056f72d --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.70_.80_plddt_0_.40_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7f97edbb2b80a3d1028f14ffce07c408d184837 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.60_.70_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..092a014c658669aea01f1807da45f515ba0b6082 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.70_.80_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..89d722760c3884bb964a44f0117f77f4002b8212 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,350 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_16.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_17.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_18.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_19.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_20.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_21.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_22.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_23.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.80_.90_24.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a2202a28fc578ade7d10eccec90cc0cbb719411 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,56 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.80_.90_plddt_.90_1_03.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f640715e09a3a10fad595e2c3516372a02121de2 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.70_.80_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9c62090c17f99ad1a168d51f5adfd41a183406b --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,70 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.80_.90_03.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4b908fd9e1231364ac522155b0d61bfb6f28d87 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,238 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_.90_1_plddt_.90_1_16.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d70188b86911e5d8dc5dd5d57736abc02f832b1a --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.40_.50_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b06b3b6d287b21bc664034c6b03d30333ae5f39d --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,28 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.50_.60_01.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..99da426082753402f0f146b1853d06eb9003a102 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.60_.70_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b56f372045ae6d383acd8f5d1541fc90e8c59fb --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1,14 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_.70_.80_00.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..e41a2c8ce608937573caeb030b34a58100a020f3 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,406 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_00.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_01.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_02.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_03.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_04.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_05.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_06.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_07.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_08.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_09.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_10.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_11.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_12.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_13.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_14.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_15.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_16.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_17.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_18.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_19.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_20.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_21.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_22.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_23.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_24.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_25.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_26.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_27.DB_ss.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.lookup +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB.source +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ca.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_h.index +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss.dbtype +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/foldseekdb/tm_0_.40_plddt_0_.40_28.DB_ss.index diff --git a/esm_scripts/atlas/v2023_02/full/tarballs.txt b/esm_scripts/atlas/v2023_02/full/tarballs.txt new file mode 100644 index 0000000000000000000000000000000000000000..875427c940038804b05cefbb1cbedeb92fba6055 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs.txt @@ -0,0 +1,149 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_28.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..34c76c20362abb7aba1cd60b6049cbbad687db2b --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.40_.50_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc1091e1ef4f5636705835ba1612364949da2076 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.50_.60_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b43f2fcd4e530258dc441ee6e228cf842f5b9ab4 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.60_.70_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3abc706a073b45252cf3cdb5f55967576ff3ec6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_.70_.80_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..84e1cf0af41a5883ef6303f8ebe44eddb4aba2f6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.40_.50_plddt_0_.40_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..59b31e0229526c7a264dfb8c148048d010223fcf --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.40_.50_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab4a0d014ead592efbf09b4ce9b2fbf6d278a118 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60.txt @@ -0,0 +1,3 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.50_.60_02.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bcd3c19d02853b2f6c2eb840f2ab64748d4d2c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.60_.70_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..e147d519e547e97578caf48adffd8f425bc92829 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_.70_.80_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ea94eba50065c54d0e43b6eb0c646793d3cc4bf --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.50_.60_plddt_0_.40_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c9a80630e590c7a3ea53a95089bb3044d17872d --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.40_.50_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0951b5915d5880ef54661a271162a2d1da2ec6c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.50_.60_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc472e6ff170791e5e6bb1484557f8fcafbbfaa --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70.txt @@ -0,0 +1,6 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.60_.70_05.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..50cdfadaa32b6ae08a5fc487e17e5ff828a1e1b1 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.70_.80_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9771f1ae9ad69b21c9267437fff96ea358d114f --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_.80_.90_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd6906c2a43987f0b53e5fe0431dd9ed5a232b73 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.60_.70_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.60_.70_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1275764c0cf6449514a0e2d115d3efdf6712821c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.40_.50.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.40_.50_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd2b1c5cfd547fe6769f1fb2ee6bd88b3097614 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.50_.60_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac4d47fd10a3775ab330def79a85869ae019209a --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.60_.70_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..dad2d477ee968ceaf03220d2bc4e9eb60f954a98 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80.txt @@ -0,0 +1,13 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.70_.80_12.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..3097ec296a9c08535083a569c1de82d82fdf1f56 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.80_.90_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f166a64dc8c02b26eda8a15d364ab741e5d13a15 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_.90_1_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd1e2c923c716a4f7cba9650ee3b6064eaa8167 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.70_.80_plddt_0_.40.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.70_.80_plddt_0_.40_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6929d3c878b511bbdfca96af69e7f82677f3d3f --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.60_.70_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..1efebfa98f6db2485628e6c0dddda5848a10342c --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.70_.80_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..25fe527883fa2f984c0da347c4788d4ddc515eee --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90.txt @@ -0,0 +1,25 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.80_.90_24.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..494d7d5ddf34f05a944da327b1869ebc87fa27e8 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.80_.90_plddt_.90_1_03.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd95355d1b6260bbb49633dd68de7b52fffa532f --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.70_.80_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3dcd042d53209db2662177484642e0b547486b1 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90.txt @@ -0,0 +1,4 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.80_.90_03.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..442a566483f0100408b1a69fda8add33478f3e03 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1.txt @@ -0,0 +1,17 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_.90_1_plddt_.90_1_16.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb4feb7de5fdd63c6d87663764e3f6c01c549e8b --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.40_.50_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60.txt new file mode 100644 index 0000000000000000000000000000000000000000..10bbecdca8bb5703d7a2f34a8beef6ab77024fb9 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60.txt @@ -0,0 +1,2 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.50_.60_01.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.60_.70.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.60_.70.txt new file mode 100644 index 0000000000000000000000000000000000000000..9693cffe3b3588fc43fd04e02d3c18bf87cb3a62 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.60_.70.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.60_.70_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.70_.80.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.70_.80.txt new file mode 100644 index 0000000000000000000000000000000000000000..515a4562f62348d0d4e0bc7bd8b67898dfdb4de6 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_.70_.80.txt @@ -0,0 +1 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_.70_.80_00.tar.gz diff --git a/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40.txt b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40.txt new file mode 100644 index 0000000000000000000000000000000000000000..60a533aa7df6fb00d5f9ec5f6049623dbfce4c34 --- /dev/null +++ b/esm_scripts/atlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40.txt @@ -0,0 +1,29 @@ +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_00.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_01.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_02.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_03.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_04.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_05.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_06.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_07.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_08.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_09.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_10.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_11.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_12.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_13.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_14.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_15.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_16.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_17.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_18.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_19.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_20.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_21.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_22.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_23.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_24.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_25.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_26.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_27.tar.gz +https://dl.fbaipublicfiles.com/esmatlas/v2023_02/full/tarballs/tm_0_.40_plddt_0_.40_28.tar.gz diff --git a/esm_scripts/download_weights.sh b/esm_scripts/download_weights.sh new file mode 100644 index 0000000000000000000000000000000000000000..c95247ceaca7db52af476625d58b4e74d558b8de --- /dev/null +++ b/esm_scripts/download_weights.sh @@ -0,0 +1,65 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. + +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + +#! /bin/sh +# Usage: bash /esm/scripts/download_weights.sh /path/to/weights/ +# re run the command to continue downloading incomplete files. +echo $0 +run_dir=$(readlink -f $(dirname $0)) ; + +if [[ "$(which aria2c)" == "" ]];then + echo aria2c is required for downloading! + exit 1 +fi + +for _sh_exec in /bin/sh bash zsh;do + # only bash and zsh are tested. + _sh_exec=$(which ${_sh_exec}) + if [[ "$(${_sh_exec} --version)" =~ "bash" || "$(${_sh_exec} --version)" =~ "zsh" ]];then + echo $(which ${_sh_exec}); + break + fi +done + +model_pth=$1 +if [[ "$model_pth" == "" ]];then + model_pth=$PWD +fi + +mkdir -p $model_pth/checkpoints + +pushd $model_pth/checkpoints +cat $run_dir/../README.md |grep -e '^|' |grep -e 'fair-esm/models' |tr -d '|' | \ + awk 'BEGIN{print "set -e"}; + { + # read urls starts with https + split($0,arr,"https"); + url="https"arr[2]; + + # remove blank spaces after url string + split(url,url_arr," ") + url=url_arr[1] + + # guessing regression pt url + url_regression=url; + sub("models","regression",url_regression); + sub(".pt","-contact-regression.pt",url_regression); + + # downloading weight + url_basename_idx=split(url,url_arr,"/") + url_basename=url_arr[url_basename_idx] + print "if [[ ! -f "url_basename" || -f "url_basename".aria2 ]];then echo Download not complete: "url_basename";aria2c -x 10 "url";else echo Download complete: "url_basename";fi" + + # downloading regression, if not existing and through an error, we just ignore it. + url_regression_basename_idx=split(url_regression,url_arr,"/") + url_regression_basename=url_arr[url_regression_basename_idx] + print "if [[ ! -f "url_regression_basename" || -f "url_regression_basename".aria2 ]];then echo Download not complete: "url_regression_basename";aria2c -x 10 "url_regression" 2>/dev/null || echo Never mind. "url_regression_basename" may not exist. ;else echo Download complete: "url_regression_basename";fi" + + }' |$_sh_exec + + +echo "Your model directory is located at \`$(readlink -f ${model_pth})\`." + +popd \ No newline at end of file diff --git a/esm_scripts/extract.py b/esm_scripts/extract.py new file mode 100644 index 0000000000000000000000000000000000000000..9e5bcb35a9d91e792b01a0c8f80e4f81885e1f20 --- /dev/null +++ b/esm_scripts/extract.py @@ -0,0 +1,140 @@ +#!/usr/bin/env python3 -u +# Copyright (c) Meta Platforms, Inc. and affiliates. +# +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + +import argparse +import pathlib + +import torch + +from esm import Alphabet, FastaBatchedDataset, ProteinBertModel, pretrained, MSATransformer + + +def create_parser(): + parser = argparse.ArgumentParser( + description="Extract per-token representations and model outputs for sequences in a FASTA file" # noqa + ) + + parser.add_argument( + "model_location", + type=str, + help="PyTorch model file OR name of pretrained model to download (see README for models)", + ) + parser.add_argument( + "fasta_file", + type=pathlib.Path, + help="FASTA file on which to extract representations", + ) + parser.add_argument( + "output_dir", + type=pathlib.Path, + help="output directory for extracted representations", + ) + + parser.add_argument("--toks_per_batch", type=int, default=4096, help="maximum batch size") + parser.add_argument( + "--repr_layers", + type=int, + default=[-1], + nargs="+", + help="layers indices from which to extract representations (0 to num_layers, inclusive)", + ) + parser.add_argument( + "--include", + type=str, + nargs="+", + choices=["mean", "per_tok", "bos", "contacts"], + help="specify which representations to return", + required=True, + ) + parser.add_argument( + "--truncation_seq_length", + type=int, + default=1022, + help="truncate sequences longer than the given value", + ) + + parser.add_argument("--nogpu", action="store_true", help="Do not use GPU even if available") + return parser + + +def run(args): + model, alphabet = pretrained.load_model_and_alphabet(args.model_location) + model.eval() + if isinstance(model, MSATransformer): + raise ValueError( + "This script currently does not handle models with MSA input (MSA Transformer)." + ) + if torch.cuda.is_available() and not args.nogpu: + model = model.cuda() + print("Transferred model to GPU") + + dataset = FastaBatchedDataset.from_file(args.fasta_file) + batches = dataset.get_batch_indices(args.toks_per_batch, extra_toks_per_seq=1) + data_loader = torch.utils.data.DataLoader( + dataset, collate_fn=alphabet.get_batch_converter(args.truncation_seq_length), batch_sampler=batches + ) + print(f"Read {args.fasta_file} with {len(dataset)} sequences") + + args.output_dir.mkdir(parents=True, exist_ok=True) + return_contacts = "contacts" in args.include + + assert all(-(model.num_layers + 1) <= i <= model.num_layers for i in args.repr_layers) + repr_layers = [(i + model.num_layers + 1) % (model.num_layers + 1) for i in args.repr_layers] + + with torch.no_grad(): + for batch_idx, (labels, strs, toks) in enumerate(data_loader): + print( + f"Processing {batch_idx + 1} of {len(batches)} batches ({toks.size(0)} sequences)" + ) + if torch.cuda.is_available() and not args.nogpu: + toks = toks.to(device="cuda", non_blocking=True) + + out = model(toks, repr_layers=repr_layers, return_contacts=return_contacts) + + logits = out["logits"].to(device="cpu") + representations = { + layer: t.to(device="cpu") for layer, t in out["representations"].items() + } + if return_contacts: + contacts = out["contacts"].to(device="cpu") + + for i, label in enumerate(labels): + args.output_file = args.output_dir / f"{label}.pt" + args.output_file.parent.mkdir(parents=True, exist_ok=True) + result = {"label": label} + truncate_len = min(args.truncation_seq_length, len(strs[i])) + # Call clone on tensors to ensure tensors are not views into a larger representation + # See https://github.com/pytorch/pytorch/issues/1995 + if "per_tok" in args.include: + result["representations"] = { + layer: t[i, 1 : truncate_len + 1].clone() + for layer, t in representations.items() + } + if "mean" in args.include: + result["mean_representations"] = { + layer: t[i, 1 : truncate_len + 1].mean(0).clone() + for layer, t in representations.items() + } + if "bos" in args.include: + result["bos_representations"] = { + layer: t[i, 0].clone() for layer, t in representations.items() + } + if return_contacts: + result["contacts"] = contacts[i, : truncate_len, : truncate_len].clone() + + torch.save( + result, + args.output_file, + ) + + +def main(): + parser = create_parser() + args = parser.parse_args() + run(args) + +if __name__ == "__main__": + main() diff --git a/esm_scripts/fold.py b/esm_scripts/fold.py new file mode 100644 index 0000000000000000000000000000000000000000..482cdc911b2b68c6fc773b7935611764ecd1aa63 --- /dev/null +++ b/esm_scripts/fold.py @@ -0,0 +1,205 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. + +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + + +from pathlib import Path +import sys,os +import argparse +import logging +import sys +import typing as T +from pathlib import Path +from timeit import default_timer as timer + +import torch + +import esm +from esm.data import read_fasta + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +formatter = logging.Formatter( + "%(asctime)s | %(levelname)s | %(name)s | %(message)s", + datefmt="%y/%m/%d %H:%M:%S", +) + +console_handler = logging.StreamHandler(sys.stdout) +console_handler.setLevel(logging.INFO) +console_handler.setFormatter(formatter) +logger.addHandler(console_handler) + + +PathLike = T.Union[str, Path] + + +def enable_cpu_offloading(model): + from torch.distributed.fsdp import CPUOffload, FullyShardedDataParallel + from torch.distributed.fsdp.wrap import enable_wrap, wrap + + torch.distributed.init_process_group( + backend="nccl", init_method="tcp://localhost:9999", world_size=1, rank=0 + ) + + wrapper_kwargs = dict(cpu_offload=CPUOffload(offload_params=True)) + + with enable_wrap(wrapper_cls=FullyShardedDataParallel, **wrapper_kwargs): + for layer_name, layer in model.layers.named_children(): + wrapped_layer = wrap(layer) + setattr(model.layers, layer_name, wrapped_layer) + model = wrap(model) + + return model + + +def init_model_on_gpu_with_cpu_offloading(model): + model = model.eval() + model_esm = enable_cpu_offloading(model.esm) + del model.esm + model.cuda() + model.esm = model_esm + return model + + +def create_batched_sequence_datasest( + sequences: T.List[T.Tuple[str, str]], max_tokens_per_batch: int = 1024 +) -> T.Generator[T.Tuple[T.List[str], T.List[str]], None, None]: + + batch_headers, batch_sequences, num_tokens = [], [], 0 + for header, seq in sequences: + if (len(seq) + num_tokens > max_tokens_per_batch) and num_tokens > 0: + yield batch_headers, batch_sequences + batch_headers, batch_sequences, num_tokens = [], [], 0 + batch_headers.append(header) + batch_sequences.append(seq) + num_tokens += len(seq) + + yield batch_headers, batch_sequences + + +def create_parser(): + parser = argparse.ArgumentParser() + parser.add_argument( + "-i", + "--fasta", + help="Path to input FASTA file", + type=Path, + required=True, + ) + parser.add_argument( + "-o", "--pdb", help="Path to output PDB directory", type=Path, required=True + ) + parser.add_argument( + "-m", "--model-dir", help="Parent path to Pretrained ESM data directory. ", type=Path, default=None + ) + parser.add_argument( + "--num-recycles", + type=int, + default=None, + help="Number of recycles to run. Defaults to number used in training (4).", + ) + parser.add_argument( + "--max-tokens-per-batch", + type=int, + default=1024, + help="Maximum number of tokens per gpu forward-pass. This will group shorter sequences together " + "for batched prediction. Lowering this can help with out of memory issues, if these occur on " + "short sequences.", + ) + parser.add_argument( + "--chunk-size", + type=int, + default=None, + help="Chunks axial attention computation to reduce memory usage from O(L^2) to O(L). " + "Equivalent to running a for loop over chunks of of each dimension. Lower values will " + "result in lower memory usage at the cost of speed. Recommended values: 128, 64, 32. " + "Default: None.", + ) + parser.add_argument("--cpu-only", help="CPU only", action="store_true") + parser.add_argument("--cpu-offload", help="Enable CPU offloading", action="store_true") + return parser + + +def run(args): + if not args.fasta.exists(): + raise FileNotFoundError(args.fasta) + + args.pdb.mkdir(exist_ok=True) + + # Read fasta and sort sequences by length + logger.info(f"Reading sequences from {args.fasta}") + all_sequences = sorted(read_fasta(args.fasta), key=lambda header_seq: len(header_seq[1])) + logger.info(f"Loaded {len(all_sequences)} sequences from {args.fasta}") + + logger.info("Loading model") + + # Use pre-downloaded ESM weights from model_pth. + if args.model_dir is not None: + # if pretrained model path is available + torch.hub.set_dir(args.model_dir) + + model = esm.pretrained.esmfold_v1() + + + model = model.eval() + model.set_chunk_size(args.chunk_size) + + if args.cpu_only: + model.esm.float() # convert to fp32 as ESM-2 in fp16 is not supported on CPU + model.cpu() + elif args.cpu_offload: + model = init_model_on_gpu_with_cpu_offloading(model) + else: + model.cuda() + logger.info("Starting Predictions") + batched_sequences = create_batched_sequence_datasest(all_sequences, args.max_tokens_per_batch) + + num_completed = 0 + num_sequences = len(all_sequences) + for headers, sequences in batched_sequences: + start = timer() + try: + output = model.infer(sequences, num_recycles=args.num_recycles) + except RuntimeError as e: + if e.args[0].startswith("CUDA out of memory"): + if len(sequences) > 1: + logger.info( + f"Failed (CUDA out of memory) to predict batch of size {len(sequences)}. " + "Try lowering `--max-tokens-per-batch`." + ) + else: + logger.info( + f"Failed (CUDA out of memory) on sequence {headers[0]} of length {len(sequences[0])}." + ) + + continue + raise + + output = {key: value.cpu() for key, value in output.items()} + pdbs = model.output_to_pdb(output) + tottime = timer() - start + time_string = f"{tottime / len(headers):0.1f}s" + if len(sequences) > 1: + time_string = time_string + f" (amortized, batch size {len(sequences)})" + for header, seq, pdb_string, mean_plddt, ptm in zip( + headers, sequences, pdbs, output["mean_plddt"], output["ptm"] + ): + output_file = args.pdb / f"{header}.pdb" + output_file.write_text(pdb_string) + num_completed += 1 + logger.info( + f"Predicted structure for {header} with length {len(seq)}, pLDDT {mean_plddt:0.1f}, " + f"pTM {ptm:0.3f} in {time_string}. " + f"{num_completed} / {num_sequences} completed." + ) + + +def main(): + parser = create_parser() + args = parser.parse_args() + run(args) + +if __name__ == "__main__": + main() diff --git a/examples/blip2_itm.py b/examples/blip2_itm.py new file mode 100644 index 0000000000000000000000000000000000000000..3e5e8f293cb272701609d20ba7c235a2f47e4858 --- /dev/null +++ b/examples/blip2_itm.py @@ -0,0 +1,520 @@ +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein +import os +# import obonet + + +def fuzzy_match(texts): + text_dict = {} + for context in texts: + if context not in choices: + # txt_dict[txt] = process.extractOne(txt, choices)[0] + text_dict[context] = difflib.get_close_matches(context, choices, n=1, cutoff=0.)[0] + return text_dict + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + +def func(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20230924220/checkpoint_5.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 25} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 12 + iter = n // bsz + 1 + + for i in range(iter): + image = images[i*bsz: min(n, (i+1)*bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)["representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 10 + return_num_txt = 5 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=3, + max_length=30, + repetition_penalty=5., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs, skip_special_tokens=True) + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + with open('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix), 'a+') as f: + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + + +cat = 'mf' +fix = '_mf' +if cat == 'bp': + fix = '_bp' +if cat == 'cc': + fix = '_cc' + +# model_pth = {'mf': 'uniprot_swissprot_mf_stage1_epo19.pth', 'bp': 'checkpoint17_GO_swissprot_reviewed_bp_stage1.pth', 'cc': ''} + +# graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" +# device = 'cpu' + +### Levenshtein similarity +test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split/test{}.csv'.format(fix), sep='|')[:10000] +test['function'] = test['function'].apply(lambda x: x.lower()) + + +if os.path.exists('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix)): + os.remove('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix)) +print("stage 2 predict starting") +stage2_output(test) +print("stage 2 predict completed") + + + +df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix), sep='|', header=None, on_bad_lines='warn') +df_pred.columns = ['protein', 'function'] +df_pred = df_pred.drop_duplicates() +df_pred['function'] = df_pred['function'].apply(lambda x: str(x).split(';')) +df_pred['function'] = df_pred['function'].apply(lambda x: [i.strip() for i in list(set(x))]) + +test.columns +test_g = test.groupby(['protein']).agg({'function': lambda x: list(x)}).reset_index() +test_g.columns = ['protein', 'label'] + +data = pd.merge(df_pred, test_g, on='protein', how='left') +data = data[data['label'].notnull()] + +sim = [] +for text, label in zip(data['function'].tolist(), data['label'].tolist()): + sim.append(func(text, label)) + +data['sim'] = sim +data['avg_score'] = data['sim'].apply(lambda x: round(np.mean(x), 3)) +print("average similarity score: {}".format(round(data['avg_score'].mean(), 3))) +# data.to_csv('/home/nilin/LAVIS/predict_{}.csv'.format(cat), index=False, sep='|') + + +test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split/test{}.csv'.format(fix), sep='|', usecols=['function', 'GO_label']) +test['function'] = test['function'].apply(lambda x: x.lower()) +test = test.drop_duplicates() +test_dict = dict(zip(test['function'], test['GO_label'])) +val = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split/val{}.csv'.format(fix), sep='|', usecols=['function', 'GO_label']) +val['function'] = val['function'].apply(lambda x: x.lower()) +val = val.drop_duplicates() +val_dict = dict(zip(val['function'], val['GO_label'])) +train = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split/train{}.csv'.format(fix), sep='|', usecols=['function', 'GO_label']) +train['function'] = train['function'].apply(lambda x: x.lower()) +train = train.drop_duplicates() +train_dict = dict(zip(train['function'], train['GO_label'])) + + +# go_des = pd.read_csv('/home/nilin/LAVIS/data/go_descriptions_new.txt', sep='|', header=None) +# # go_des = pd.read_csv('/home/nilin/LAVIS/data/go_descriptions.txt', sep='|', header=None) +# go_des.columns = ['GO', 'function'] +# go_des = go_des[go_des['function'].notnull()] +# go_des['function'] = go_des['function'].apply(lambda x: x.lower()) +# GO_dict = dict(zip(go_des['function'], go_des['GO'])) +GO_dict = {} +GO_dict.update(train_dict) +GO_dict.update(val_dict) +GO_dict.update(test_dict) +choices = list(GO_dict.keys()) + + + +# data = pd.read_csv('/home/nilin/LAVIS/predict_{}.csv'.format(cat), sep='|') +data = data.sort_values(by='protein') +data = data.drop_duplicates('protein') +# data = data.sample(1000) + +### 预测的文本如果不在GO标签词中,则算作最相似的GO标签 +t0 = time.time() +txt_dict = {} + +all_txt = [] +for txt in data['function']: + if type(txt) == str: + all_txt.extend(eval(txt)) + else: + all_txt.extend(txt) +all_txt = list(set(all_txt)) + +n = len(all_txt) +thread = 20 +size = int(n/thread) +inds = list(range(0, n, size)) +inds.append(n) +all_txt_sep = [all_txt[i: min(i+size, n)] for i in inds[:-1]] + +with Pool(processes=thread) as pool: + result = pool.map(fuzzy_match, all_txt_sep) +pool.close() +pool.join() +for d in result: + txt_dict.update(d) + +# for txt in all_txt[:10]: +# fuzzy_match(txt) + +data['function'] = data['function'].apply(lambda x: txt_map(x, txt_dict)) +data['function'] = data['function'].apply(lambda x: list(set(x))) +print("fuzzy matching time: {}".format(time.time() - t0)) + + + + +### Find the generated GO text that not included in the ground truth. Then generate pairs between them. +# pair_a, pair_b = [], [] +# for preds, labels in zip(data['function'], data['label']): +# if type(preds) == str: +# preds = eval(preds) +# if type(labels) == str: +# labels = eval(labels) +# l = len(labels) +# for pred in preds: +# if pred not in labels: +# pair_a.extend([pred]*l) +# pair_b.extend(labels[:]) +# pair_a = [re.sub('_', ':', GO_dict[i]) for i in pair_a] +# pair_b = [re.sub('_', ':', GO_dict[i]) for i in pair_b] +# with open('/home/nilin/LAVIS/examples/GO_pair{}.txt'.format(fix), 'w+') as f: +# for i, j in zip(pair_a, pair_b): +# f.write(i+' '+j+'\n') + + +# load model +model_config = {'arch': 'blip2_protein', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage1/20230922185/checkpoint_15.pth', + 'finetuned': '', 'num_query_token': 32, 'prompt': '', + 'model_type': 'pretrain', 'load_pretrained': True, 'freeze_vit': False, + 'max_protein_len': 512, 'max_txt_len': 25} + +model_cls = registry.get_model_class(model_config['arch']) +model = model_cls.from_config(model_config) +model = model.to(device) +model.eval() + +# evaluate +t0 = time.time() +proteins = list(data['protein']) +txts = list(data['function']) +scores = [] +for seq, txt in zip(proteins, txts): + image = [('protein1', seq)] + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[30], return_contacts=True)["representations"][ + 30].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + use_cache=True, + return_dict=True, + ) + + image_feats = F.normalize(model.vision_proj(query_output.last_hidden_state), dim=-1) + + image_feats_all = concat_all_gather(image_feats) + + if type(txt) == str: + txt = eval(txt) + length = len(txt) + with torch.no_grad(): + text_tokens = model.tokenizer( + txt, + padding="max_length", + truncation=True, + max_length=model.max_txt_len, + return_tensors="pt", + ).to(device) + text_output = model.Qformer.bert( + text_tokens.input_ids, + attention_mask=text_tokens.attention_mask, + return_dict=True, + ) + + text_feat = F.normalize( + model.text_proj(text_output.last_hidden_state[:, 0, :]), dim=-1 + ) + + text_feat_all = concat_all_gather(text_feat) + sim_q2t = torch.matmul(image_feats.unsqueeze(1), text_feat_all.unsqueeze(-1)).squeeze() + sim_i2t, _ = sim_q2t.max(-1) + # print('sim_i2t: {}'.format(sim_i2t)) + if length > 1: + scores.append(list(sim_i2t.detach().cpu().numpy())) + else: + scores.append([sim_i2t.item()]) +print("model evaluate time: {}".format(time.time() - t0)) +data['score'] = scores + +# precision and recall top-k +topk = 2 +threshould = 0.1 +labels = [] +pred_labels = [] +for l in data['label']: + if type(l) == str: + l = eval(l) + labels.extend(l) + +labels = list(set(labels)) +total = len(labels) +for topk in range(1,7): + for threshould in range(1, 25, 1): + threshould /= 100 + filter_txts = [] + recalls = [] + precisions = [] + f1 = [] + tp_dict, fp_dict, fn_dict = dict(zip(labels, [0]*len(labels))), dict(zip(labels, [0]*len(labels))), dict(zip(labels, [0]*len(labels))) + for txts, scores, label in zip(data['function'], data['score'], data['label']): + if type(label) == str: + label = eval(label) + txts_ = np.array(txts) + scores = np.array(scores) + txts = txts_[scores > threshould] + if len(txts) < 1: + txts = txts_[np.argmax(scores)] + scores = scores[scores > threshould] + + l = len(scores) + ll = len(label) + if l <= topk: + filter_txts.append(list(txts)) + else: + ind = np.argpartition(scores, -topk)[-topk:] + txts = txts[ind] + filter_txts.append(list(txts)) + l = topk + for t in label: + if t in txts: + tp_dict[t] += 1 + else: + fn_dict[t] += 1 + for p in txts: + if p not in label: + if p in fp_dict: + fp_dict[p] += 1 + else: + fp_dict[p] = 1 + pred_labels.extend(txts) + p_total = len(set(pred_labels)) + re, pr = 0., 0. + for x in labels: + re += tp_dict[x] / (1.0 * (tp_dict[x] + fn_dict[x] + 1e-8)) + pr += tp_dict[x] / (1.0 * (tp_dict[x] + fp_dict[x]+1e-8)) + r = re / total + p = pr / total + f1 = 2 * p * r / (p + r) + print("Topk: {}, threshould: {}, macro_recall: {}, macro_precision: {}, micro_f1: {}".format(topk, threshould, r, p, f1)) + # num_r = 0 + # num_p = 0 + # for x in label: + # if x in txts: + # num_r += 1 + # for x in txts: + # if x in label: + # num_p += 1 + # recall = num_r/ll + # precision = num_p/(l+0.0001) + # recalls.append(recall) + # precisions.append(precision) + # f1.append((2*recall*precision)/(recall+precision+0.0001)) + # + # data['predict'] = filter_txts + # data['precision'] = precisions + # data['recall'] = recalls + # data['f1'] = f1 + # print("Topk: {}, threshould: {}, macro_recall: {}, macro_precision: {}, micro_f1: {}".format(topk, threshould, round(data['recall'].mean(), 4), round(data['precision'].mean(), 4), round(data['f1'].mean(), 4))) + + + + + + +# sim = [] +# for text, label in zip(data['predict'].tolist(), data['label'].tolist()): +# sim.append(levenshtein_sim(text, label)) +# +# data['sim_filter'] = sim +# data['avg_score'] = data['sim_filter'].apply(lambda x: round(np.mean(x), 3)) + + +# data['function'] = data['function'].apply(lambda x: eval(re.sub(';', ',', str(x)))) +# data['label'] = data['label'].apply(lambda x: eval(re.sub(';', ',', str(x)))) +# data['sim'] = data['sim'].apply(lambda x: eval(re.sub(';', ',', str(x)))) +# +# data['function'] = data['function'].apply(lambda x: re.sub(',', ';', str(x))) +# data['label'] = data['label'].apply(lambda x: re.sub(',', ';', str(x))) +# data['sim'] = data['sim'].apply(lambda x: re.sub(',', ';', str(x))) +# data['predict'] = data['predict'].apply(lambda x: re.sub(',', ';', str(x))) +# data['sim_filter'] = data['sim_filter'].apply(lambda x: re.sub(',', ';', str(x))) + +data.to_csv('/cluster/home/wenkai/LAVIS/output/predict_sim{}.csv'.format(fix), sep='|', index=False) +# data = pd.read_csv('/cluster/home/wenkai/LAVIS/output/predict_sim{}.csv'.format(fix), sep='|') + + + + + + + + +# +# # example +# image = ['MIELKHVTFGYNKKQMVLQDINITIPDGENVGILGESGCGKSTLASLVLGLFKPVKGEIYLSDNAVLTIFQHPLTSFNPDWTIETSLKEALYYYRGLTDNTAQDQLLLQHLSTFELNAQLLTKLPSEVSGGQLQRFNVMRSLLAQPRVLICDEITSNLDVIAEQNVINILKAQTITNLNHFIVISHDLSVLQRLVNRIIVLKDGMIVDDFAIEELFNVDRHPYTKELVQTFSY'] +# image = [('protein{}'.format(i), x) for i, x in enumerate(image)] +# +# _, _, batch_tokens = model.visual_encoder(image) +# image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[30], return_contacts=True)["representations"][30].contiguous() +# +# image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) +# +# query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) +# +# query_output = model.Qformer.bert( +# query_embeds=query_tokens, +# encoder_hidden_states=image_embeds, +# encoder_attention_mask=image_atts, +# use_cache=True, +# return_dict=True, +# ) +# +# image_feats = F.normalize(model.vision_proj(query_output.last_hidden_state), dim=-1) +# +# image_feats_all = concat_all_gather(image_feats) +# +# functions = ['transmembrane transporter activity', 'nickel cation transmembrane transporter activity', 'nickel cation binding', 'atp hydrolysis activity', 'atp hydrolysis', 'cadmium binding', 'abc-type nickel transmembrane transporter activity', 'abc-type nickel transporter activity', 'nickel transmembrane transporter activity', 'atp binding'] +# for text in functions: +# with torch.no_grad(): +# # text = 'flavin adenine dinucleotide binding' +# text_tokens = model.tokenizer( +# text, +# padding="max_length", +# truncation=True, +# max_length=model.max_txt_len, +# return_tensors="pt", +# ).to(device) +# text_output = model.Qformer.bert( +# text_tokens.input_ids, +# attention_mask=text_tokens.attention_mask, +# return_dict=True, +# ) +# +# text_feat = F.normalize( +# model.text_proj(text_output.last_hidden_state[:, 0, :]), dim=-1 +# ) +# +# text_feat_all = concat_all_gather(text_feat) +# sim_q2t = torch.matmul(image_feats.unsqueeze(1), text_feat_all.unsqueeze(-1)).squeeze() +# sim_i2t, _ = sim_q2t.max(-1) +# print('sim_i2t: {}'.format(sim_i2t)) +# +# # # text-query similarity: [batch_size, batch_size*num_gpu, num_query_tokens] +# # sim_t2q = torch.matmul( +# # text_feat.unsqueeze(1).unsqueeze(1), image_feats_all.permute(0, 2, 1) +# # ).squeeze() +# # +# # # text-image similarity: aggregate across all query tokens +# # sim_t2i, _ = sim_t2q.max(-1) +# # print('sim_t2i: {}'.format(sim_t2i)) + + + diff --git a/examples/blip2_predict_func.py b/examples/blip2_predict_func.py new file mode 100644 index 0000000000000000000000000000000000000000..d06919a61514c1dd6d16647cf5ee105a82347373 --- /dev/null +++ b/examples/blip2_predict_func.py @@ -0,0 +1,178 @@ +import os +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein +# import obonet + + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" +# device = 'cpu' + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + +def func(text, label): + all_s = [] + for x in text: + s = 0 + for y in label: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test, return_num_txt=1): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20230924220/checkpoint_5.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 25} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 12 + iter = n // bsz + 1 + + for i in range(iter): + image = images[i*bsz: min(n, (i+1)*bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)["representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 6 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=3, + max_length=30, + repetition_penalty=1., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs, skip_special_tokens=True) + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + with open('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix), 'a+') as f: + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + + +cat = 'mf' +fix = '_mf' +if cat == 'bp': + fix = '_bp' +if cat == 'cc': + fix = '_cc' + +return_num_txt = 1 +# graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + +### Levenshtein similarity +test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split/test{}.csv'.format(fix), sep='|') +test['function'] = test['function'].apply(lambda x: x.lower()) + + +if os.path.exists('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix)): + os.remove('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix)) +print("stage 2 predict starting") +stage2_output(test) +print("stage 2 predict completed") + +df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output{}.txt'.format(fix), sep='|', header=None, on_bad_lines='warn') +df_pred.columns = ['protein', 'function'] +df_pred = df_pred.drop_duplicates() +df_pred['function'] = df_pred['function'].apply(lambda x: str(x).split(';')) +df_pred['function'] = df_pred['function'].apply(lambda x: [i.strip() for i in list(set(x))]) + +test_g = test.groupby(['protein']).agg({'function': lambda x: list(x)}).reset_index() +test_g.columns = ['protein', 'label'] + +data = pd.merge(df_pred, test_g, on='protein', how='left') +data = data[data['label'].notnull()] + +sim = [] +for text, label in zip(data['function'].tolist(), data['label'].tolist()): + sim.append(func(text, label)) + +data['sim'] = sim +data['avg_score'] = data['sim'].apply(lambda x: round(np.mean(x), 3)) +data['count'] = data['sim'].apply(lambda x: x.count(1.)) +print("average similarity score: {}".format(round(data['avg_score'].mean(), 3))) +print("Return texts: {}; Accuracy: {}".format(return_num_txt, data['count'].sum()/(return_num_txt*data.shape[0]))) +data.to_csv('/cluster/home/wenkai/LAVIS/output/predict_{}.csv'.format(cat), index=False, sep='|') + + + + diff --git a/examples/blip2_predict_func_concat.py b/examples/blip2_predict_func_concat.py new file mode 100644 index 0000000000000000000000000000000000000000..a8c880a28bf56dca246cb8eabc56f056885306db --- /dev/null +++ b/examples/blip2_predict_func_concat.py @@ -0,0 +1,193 @@ +import os +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein + +# import obonet + + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" + + +# device = torch.device("cuda") + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def func(text, label): + all_s = [] + for x in text: + s = 0 + for y in label: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test, return_num_txt=1): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20231029182/checkpoint_0.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 256} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 8 + iter = n // bsz + 1 + with open('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix), 'a+') as f: + for i in range(iter): + image = images[i * bsz: min(n, (i + 1) * bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = \ + model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)[ + "representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 5 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=1, + max_length=256, + repetition_penalty=1., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs) + + output_text = [re.sub('\t', '', str(x)) for x in output_text] + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + + +if __name__=="__main__": + split = 'test' + cat = 'bp' + fix = '_mf' + type_fix = '' + if cat == 'bp': + fix = '_bp' + if cat == 'cc': + fix = '_cc' + + print(device) + return_num_txt = 1 + # graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + + ### Levenshtein similarity + print("reading file ...") + test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/sim_split_concat/{}{}.csv'.format(split, fix), + usecols=['name', 'protein', 'function'], sep='|') + # test['function'] = test['function'].apply(lambda x: x.lower().split('; ')) + test.columns = ['name', 'protein', 'label'] + + if os.path.exists('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix)): + os.remove('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix)) + print("stage 2 predict starting") + stage2_output(test) + print("stage 2 predict completed") + + df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix), sep='|', + header=None, on_bad_lines='warn') + df_pred.columns = ['protein', 'pred'] + df_pred = df_pred.drop_duplicates() + # df_pred['function'] = df_pred['function'].apply(lambda x: str(x).split(';')) + # df_pred['function'] = df_pred['function'].apply(lambda x: [i.strip() for i in list(set(x))]) + + + data = pd.merge(df_pred, test, on='protein', how='left') + data = data[data['label'].notnull()] + + # sim = [] + # for text, label in zip(data['function'].tolist(), data['label'].tolist()): + # sim.append(func(text, label)) + + # data['sim'] = sim + # data['avg_score'] = data['sim'].apply(lambda x: round(np.mean(x), 3)) + # data['count'] = data['sim'].apply(lambda x: x.count(1.)) + # print("average similarity score: {}".format(round(data['avg_score'].mean(), 3))) + # print("Return texts: {}; Accuracy: {}".format(return_num_txt, data['count'].sum()/(return_num_txt*data.shape[0]))) + data[['name', 'label', 'pred']].to_csv( + '/cluster/home/wenkai/LAVIS/output/predict_concat_{}{}{}.csv'.format(split, cat, type_fix), index=False, sep='|') + + + + + diff --git a/examples/blip2_predict_func_concat_pretrain.py b/examples/blip2_predict_func_concat_pretrain.py new file mode 100644 index 0000000000000000000000000000000000000000..6692d62f83bb788d8c9910a3da050a4e788fe368 --- /dev/null +++ b/examples/blip2_predict_func_concat_pretrain.py @@ -0,0 +1,197 @@ +import os +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein + +# import obonet + + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" + + +# device = torch.device("cuda") + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def func(text, label): + all_s = [] + for x in text: + s = 0 + for y in label: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test, return_num_txt=1): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20231029182/checkpoint_0.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 256} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 8 + iter = n // bsz + 1 + if n > 0: + for i in range(iter): + image = images[i * bsz: min(n, (i + 1) * bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = \ + model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)[ + "representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 5 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=1, + max_length=256, + repetition_penalty=1., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs) + + output_text = [re.sub('\t', '', str(x)) for x in output_text] + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + + f = open('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix), 'a+') + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + f.close() + + + + +if __name__=="__main__": + split = 'test' + cat = '' + fix = '' + type_fix = '_pretrain' + if cat == 'bp': + fix = '_bp' + if cat == 'cc': + fix = '_cc' + + print(device) + return_num_txt = 1 + # graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + + ### Levenshtein similarity + print("reading file ...") + test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/pretrain/{}_sample10000.csv'.format(split), + usecols=['name', 'protein', 'function'], sep='|') + # test['function'] = test['function'].apply(lambda x: x.lower().split('; ')) + test.columns = ['name', 'protein', 'label'] + + if os.path.exists('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix)): + os.remove('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix)) + print("stage 2 predict starting") + stage2_output(test) + print("stage 2 predict completed") + + df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output_concat_{}{}{}.txt'.format(split, fix, type_fix), sep='|', + header=None, on_bad_lines='warn') + df_pred.columns = ['protein', 'pred'] + df_pred = df_pred.drop_duplicates() + # df_pred['function'] = df_pred['function'].apply(lambda x: str(x).split(';')) + # df_pred['function'] = df_pred['function'].apply(lambda x: [i.strip() for i in list(set(x))]) + + + data = pd.merge(df_pred, test, on='protein', how='left') + data = data[data['label'].notnull()] + + # sim = [] + # for text, label in zip(data['function'].tolist(), data['label'].tolist()): + # sim.append(func(text, label)) + + # data['sim'] = sim + # data['avg_score'] = data['sim'].apply(lambda x: round(np.mean(x), 3)) + # data['count'] = data['sim'].apply(lambda x: x.count(1.)) + # print("average similarity score: {}".format(round(data['avg_score'].mean(), 3))) + # print("Return texts: {}; Accuracy: {}".format(return_num_txt, data['count'].sum()/(return_num_txt*data.shape[0]))) + data[['name', 'label', 'pred']].to_csv( + '/cluster/home/wenkai/LAVIS/output/predict_concat_{}{}{}.csv'.format(split, cat, type_fix), index=False, sep='|') + + + + + diff --git a/examples/blip2_predict_func_concat_timesplit.py b/examples/blip2_predict_func_concat_timesplit.py new file mode 100644 index 0000000000000000000000000000000000000000..28657878ef25b0463431f645bc9097aeb756e469 --- /dev/null +++ b/examples/blip2_predict_func_concat_timesplit.py @@ -0,0 +1,166 @@ +import os +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein +# import obonet + + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" +# device = 'cpu' + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + +def func(text, label): + all_s = [] + for x in text: + s = 0 + for y in label: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test, return_num_txt=1): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20231007085/checkpoint_19.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 256} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 12 + iter = n // bsz + 1 + + for i in range(iter): + image = images[i*bsz: min(n, (i+1)*bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)["representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 5 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=3, + max_length=256, + repetition_penalty=1., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs) + output_text = [re.sub('\t', '', x) for x in output_text] + + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + with open('/cluster/home/wenkai/LAVIS/output/output_timeconcat{}.txt'.format(fix), 'a+') as f: + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + + +cat = 'mf' +fix = '_mf' +if cat == 'bp': + fix = '_bp' +if cat == 'cc': + fix = '_cc' + +return_num_txt = 1 +# graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + +### Levenshtein similarity +test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/review_time_concat/test{}.csv'.format(fix), usecols=['name', 'protein', 'function'], sep='|') +#test['function'] = test['function'].apply(lambda x: x.lower().split('; ')) +test.columns = ['name', 'protein', 'label'] + +if os.path.exists('/cluster/home/wenkai/LAVIS/output/output_timeconcat{}.txt'.format(fix)): + os.remove('/cluster/home/wenkai/LAVIS/output/output_timeconcat{}.txt'.format(fix)) +print("stage 2 predict starting") +stage2_output(test) +print("stage 2 predict completed") + +df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output_timeconcat{}.txt'.format(fix), sep='|', header=None, on_bad_lines='warn') +df_pred.columns = ['protein', 'pred'] +df_pred = df_pred.drop_duplicates() + +data = pd.merge(df_pred, test, on='protein', how='left') +data = data[data['label'].notnull()] + +data[['name', 'label', 'pred']].to_csv('/cluster/home/wenkai/LAVIS/output/predict_timeconcat_{}.csv'.format(cat), index=False, sep='|') + + + + diff --git a/examples/blip2_predict_names.py b/examples/blip2_predict_names.py new file mode 100644 index 0000000000000000000000000000000000000000..635f5923d04016c514359a5f2f3fa33c90f735ea --- /dev/null +++ b/examples/blip2_predict_names.py @@ -0,0 +1,247 @@ +import os +import re + +import torch +from PIL import Image + +from lavis.models import load_model_and_preprocess +from lavis.processors import load_processor +from lavis.common.registry import registry +from torch.nn import functional as F +from lavis.models.base_model import all_gather_with_grad, concat_all_gather +import numpy as np +import pandas as pd +import time +from fuzzywuzzy import process +from multiprocessing import Pool, Queue, Process +import difflib +import Levenshtein +# import obonet + + +# setup device to use +device = torch.device("cuda") if torch.cuda.is_available() else "cpu" +# device = 'cpu' + + +def txt_map(x, txt_dict): + if type(x) == str: + x = eval(x) + x_ = [] + for i in x: + if i in txt_dict: + x_.append(txt_dict[i]) + else: + x_.append(i) + return x_ + + +def levenshtein_sim(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + +def func(text, label): + all_s = [] + for x in label: + s = 0 + for y in text: + temp = Levenshtein.ratio(x, y) + if temp > s: + s = temp + all_s.append(s) + all_s = [round(i, 3) for i in all_s] + return all_s + + +def stage2_output(df_test): + config = {'arch': 'blip2_protein_opt', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage2/20230926091/checkpoint_3.pth', + 'finetuned': '', 'num_query_token': 32, 'opt_model': 'facebook/opt-2.7b', 'prompt': '', + 'model_type': 'pretrain_protein_opt2.7b', 'load_pretrained': True, 'freeze_vit': True, + 'max_protein_len': 600, + 'max_txt_len': 25} + + model_cls = registry.get_model_class(config['arch']) + model = model_cls.from_config(config) + model.to(device) + model.eval() + + images = df_test['protein'].tolist() + n = len(images) + bsz = 12 + iter = n // bsz + 1 + + for i in range(iter): + image = images[i*bsz: min(n, (i+1)*bsz)] + image = [('protein{}'.format(i), x) for i, x in enumerate(image)] + + with model.maybe_autocast(): + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = model.ln_vision(batch_tokens.to(device), repr_layers=[model.vis_layers], return_contacts=True)["representations"][model.vis_layers].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + return_dict=True, + ) + + inputs_opt = model.opt_proj(query_output.last_hidden_state) + atts_opt = torch.ones(inputs_opt.size()[:-1], dtype=torch.long).to(device) + + model.opt_tokenizer.padding_side = "right" + + text = ['' for i in range(len(image))] + opt_tokens = model.opt_tokenizer( + text, + return_tensors="pt", + padding="longest", + truncation=True, + max_length=model.max_txt_len, + ).to(device) + inputs_embeds = model.opt_model.model.decoder.embed_tokens(opt_tokens.input_ids) + inputs_embeds = torch.cat([inputs_opt, inputs_embeds], dim=1) + attention_mask = torch.cat([atts_opt, opt_tokens.attention_mask], dim=1) + num_txt = 5 + return_num_txt = 2 + with model.maybe_autocast(): + outputs = model.opt_model.generate(inputs_embeds=inputs_embeds, attention_mask=attention_mask, min_length=3, + max_length=30, + repetition_penalty=5., num_beams=num_txt, eos_token_id=50118, + length_penalty=1., num_return_sequences=return_num_txt, temperature=1.) + output_text = model.opt_tokenizer.batch_decode(outputs, skip_special_tokens=True) + output_text = [text.strip() for text in output_text] + output_text_ = [] + for i in range(len(image)): + output_text_.append(';'.join(output_text[i * return_num_txt:(i + 1) * return_num_txt])) + with open('/cluster/home/wenkai/LAVIS/output/output_names.txt', 'a+') as f: + for i in range(len(image)): + f.write(image[i][1] + "|" + output_text_[i] + '\n') + + +def evaluate_score(data): + model_config = {'arch': 'blip2_protein', 'load_finetuned': False, + 'pretrained': '/cluster/home/wenkai/LAVIS/lavis/output/BLIP2/Pretrain_stage1/20230925102/checkpoint_6.pth', + 'finetuned': '', 'num_query_token': 32, 'prompt': '', + 'model_type': 'pretrain', 'load_pretrained': True, 'freeze_vit': False, + 'max_protein_len': 512, 'max_txt_len': 30} + + model_cls = registry.get_model_class(model_config['arch']) + model = model_cls.from_config(model_config) + model = model.to(device) + model.eval() + + # evaluate + t0 = time.time() + proteins = list(data['protein']) + txts = list(data['function']) + scores = [] + for seq, txt in zip(proteins, txts): + image = [('protein1', seq)] + _, _, batch_tokens = model.visual_encoder(image) + image_embeds = \ + model.ln_vision(batch_tokens.to(device), repr_layers=[30], return_contacts=True)["representations"][ + 30].contiguous() + + image_atts = torch.ones(image_embeds.size()[:-1], dtype=torch.long).to(device) + + query_tokens = model.query_tokens.expand(image_embeds.shape[0], -1, -1) + + query_output = model.Qformer.bert( + query_embeds=query_tokens, + encoder_hidden_states=image_embeds, + encoder_attention_mask=image_atts, + use_cache=True, + return_dict=True, + ) + + image_feats = F.normalize(model.vision_proj(query_output.last_hidden_state), dim=-1) + + image_feats_all = concat_all_gather(image_feats) + + if type(txt) == str: + txt = eval(txt) + length = len(txt) + with torch.no_grad(): + text_tokens = model.tokenizer( + txt, + padding="max_length", + truncation=True, + max_length=model.max_txt_len, + return_tensors="pt", + ).to(device) + text_output = model.Qformer.bert( + text_tokens.input_ids, + attention_mask=text_tokens.attention_mask, + return_dict=True, + ) + + text_feat = F.normalize( + model.text_proj(text_output.last_hidden_state[:, 0, :]), dim=-1 + ) + + text_feat_all = concat_all_gather(text_feat) + sim_q2t = torch.matmul(image_feats.unsqueeze(1), text_feat_all.unsqueeze(-1)).squeeze() + sim_i2t, _ = sim_q2t.max(-1) + # print('sim_i2t: {}'.format(sim_i2t)) + if length > 1: + scores.append(list(sim_i2t.detach().cpu().numpy())) + else: + scores.append([sim_i2t.item()]) + print("model evaluate time: {}".format(time.time() - t0)) + data['sim'] = scores + return data + + + +# graph = obonet.read_obo("http://purl.obolibrary.org/obo/go.obo") + +### Levenshtein similarity +test = pd.read_csv('/cluster/home/wenkai/LAVIS/data/raw_time_split/reviewed//test.csv', sep='|') +test['function'] = test['function'].apply(lambda x: x.lower()) + + +if os.path.exists('/cluster/home/wenkai/LAVIS/output/output_names.txt'): + os.remove('/cluster/home/wenkai/LAVIS/output/output_names.txt') +print("stage 2 predict starting") +stage2_output(test) +print("stage 2 predict completed") + +df_pred = pd.read_csv('/cluster/home/wenkai/LAVIS/output/output_names.txt', sep='|', header=None, on_bad_lines='warn') +df_pred.columns = ['protein', 'function'] +df_pred = df_pred.drop_duplicates() +df_pred['function'] = df_pred['function'].apply(lambda x: str(x).split(';')) +df_pred['function'] = df_pred['function'].apply(lambda x: [i.strip() for i in list(set(x))]) + +test.columns +test_g = test.groupby(['protein']).agg({'function': lambda x: list(x)}).reset_index() +test_g.columns = ['protein', 'label'] + +data = pd.merge(df_pred, test_g, on='protein', how='left') +data = data[data['label'].notnull()] + +sim = [] +for text, label in zip(data['function'].tolist(), data['label'].tolist()): + sim.append(func(text, label)) + +data['sim'] = sim +data['avg_score'] = data['sim'].apply(lambda x: round(np.mean(x), 3)) +print("average similarity score: {}".format(round(data['avg_score'].mean(), 3))) +data.to_csv('/cluster/home/wenkai/LAVIS/output/output_names.csv', index=False, sep='|') + + + + + + diff --git a/examples/predict_test.sh b/examples/predict_test.sh new file mode 100644 index 0000000000000000000000000000000000000000..eb061e735930bcadcaa553709d3cb547bd013d15 --- /dev/null +++ b/examples/predict_test.sh @@ -0,0 +1,14 @@ +#!/bin/bash +#SBATCH -J infer_test +#SBATCH -p gpu1 +#SBATCH -N 1 +#SBATCH -w node[84] +#SBATCH --mem 80G +#SBATCH --gres=gpu:1 +#SBATCH --output=log_predict_test.out +#SBATCH --error=log_predict_test.err +#SBATCH --cpus-per-task=8 +module load anaconda3/2021.05 +source activate LAVIS + +python blip2_predict_func_concat_pretrain.py diff --git a/examples/predict_train.sh b/examples/predict_train.sh new file mode 100644 index 0000000000000000000000000000000000000000..98777ce13a3e8ab717818128d97e292341738993 --- /dev/null +++ b/examples/predict_train.sh @@ -0,0 +1,14 @@ +#!/bin/bash +#SBATCH -J infer_cc +#SBATCH -p gpu1 +#SBATCH -N 1 +#SBATCH -w node[84] +#SBATCH --mem 80G +#SBATCH --gres=gpu:1 +#SBATCH --output=log_predict.out +#SBATCH --error=log_predict.err +#SBATCH --cpus-per-task=8 +module load anaconda3/2021.05 +source activate LAVIS + +python blip2_predict_func_concat.py