StarLiu714 commited on
Commit
56b0328
·
verified ·
1 Parent(s): 56460de

Upload NAIAD dataset package with zipped structures

Browse files
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # NAIAD Dataset Package
2
+
3
+ This package contains the train/valid/test CSV index files used immediately before NAIAD training, plus every referenced `.cif` source structure.
4
+
5
+ ## Contents
6
+
7
+ - `data/*.csv`: model input index files. `structure_path` has been rewritten to package-relative paths such as `structures/101d.cif`.
8
+ - `structures/*.cif`: all 3725 unique source structures referenced by the packaged CSV files.
9
+ - `splits/*.json`: released split ID lists used to derive train/valid/test sets.
10
+ - `scripts/`: preprocessing, filtering, CSV-generation, and split/preparation scripts from the training repository.
11
+ - `configs/`: NAIAD training config.
12
+
13
+ The `.cif` files were reconstructed locally from the official wwPDB/RCSB mmCIF mirrors using the PDB IDs in `manifest.csv`.
14
+ Use `scripts/download_structures_from_manifest.py` to reproduce this step.
15
+
16
+ The parser still expects the normal NAIAD chemical component cache (`ligands.json.gz` and `elements.txt`) under the repository's `data/datasets/rcsb_cif/`, or via `NAIAD_RCSB_CIF_DIR`.
17
+
18
+ For the reported NAIAD training-data release, use `data/train.csv` as the training index, `data/valid.csv` as validation, and `data/test.csv` as the held-out test index.
19
+
20
+ To use after extraction, point `DF_PATH_TRAIN` and `DF_PATH_VALID` to `data/train.csv` and `data/valid.csv` from this package, or copy the package contents under the repository root so the relative `structure_path` values resolve.
21
+
22
+ ## Reproducing The Split CSVs
23
+
24
+ There are two different workflows in `scripts/`.
25
+
26
+ ### Exact packaged train/valid/test CSVs
27
+
28
+ Use this route to reproduce the three split CSVs bundled in `data/` from the released split ID files and the packaged CIF files:
29
+
30
+ ```bash
31
+ python scripts/generate_training_csv_from_splits.py \
32
+ --mmcif_dir structures \
33
+ --splits_dir splits \
34
+ --output_dir reproduced_data \
35
+ --split_type design
36
+ ```
37
+
38
+ Expected result when run against this package:
39
+
40
+ - `reproduced_data/train.csv`: 3096 rows.
41
+ - `reproduced_data/valid.csv`: 308 rows.
42
+ - `reproduced_data/test.csv`: 321 rows.
43
+
44
+ The row IDs match the shipped `data/train.csv`, `data/valid.csv`, and `data/test.csv`. This is because the script reads the full split ID lists and keeps only IDs whose CIF file is present under `structures/`.
45
+ The regenerated CSVs will contain absolute `structure_path` values because that script calls `os.path.abspath`; the shipped CSVs use package-relative paths such as `structures/101d.cif` for portability.
46
+
47
+ `generate_training_csv_from_splits.py` requires only normal tabular Python dependencies (`pandas`, `tqdm`) and does not import the NAIAD model/parser code.
48
+
49
+ ### Full rescan/filter/preprocess/split from a mmCIF mirror
50
+
51
+ Use this route only if you want to create a new dataset split from an external mmCIF mirror rather than reproduce the packaged split:
52
+
53
+ ```bash
54
+ python scripts/prepare_diffusion_dataset_full.py scan \
55
+ --mmcif_dir /path/to/mmcif_files \
56
+ --output_dir new_dataset \
57
+ --num_workers 16 \
58
+ --require_na
59
+
60
+ python scripts/prepare_diffusion_dataset_full.py preprocess \
61
+ --output_dir new_dataset \
62
+ --num_workers 16
63
+
64
+ # Optional, if CD-HIT is installed.
65
+ python scripts/prepare_diffusion_dataset_full.py cluster \
66
+ --output_dir new_dataset \
67
+ --cdhit_path /path/to/cdhit
68
+
69
+ python scripts/prepare_diffusion_dataset_full.py split \
70
+ --output_dir new_dataset \
71
+ --valid_fraction 0.1 \
72
+ --test_fraction 0.1 \
73
+ --use_clustering
74
+ ```
75
+
76
+ Equivalent all-in-one form:
77
+
78
+ ```bash
79
+ python scripts/prepare_diffusion_dataset_full.py all \
80
+ --mmcif_dir /path/to/mmcif_files \
81
+ --output_dir new_dataset \
82
+ --num_workers 16 \
83
+ --require_na \
84
+ --valid_fraction 0.1 \
85
+ --test_fraction 0.1
86
+ ```
87
+
88
+ This full workflow performs scanning, quality filtering, per-structure preprocessing, optional CD-HIT sequence clustering, then writes `train.csv`, `valid.csv`, and optionally `test.csv`.
89
+ It is not the command used to reproduce the fixed manuscript split files in this package.
90
+
91
+ `prepare_diffusion_dataset_full.py` imports NAIAD parser/data modules (`cifutils.py`, `pdbutils.py`, `na_data_utils.py`) and expects the chemical component cache (`ligands.json.gz`, `elements.txt`). Run it from a NAIAD source checkout or set `PYTHONPATH` so those modules are visible, and set `NAIAD_RCSB_CIF_DIR` if the cache is not under the repository's `data/datasets/rcsb_cif/`.
92
+
93
+ ### Optional preprocessing of an existing CSV
94
+
95
+ `preprocess_dataset.py` and `preprocess_dataset.sh` do not create train/valid/test splits. They consume an existing CSV, such as `data/train.csv`, and write per-structure sequence and NumPy preprocessing artifacts:
96
+
97
+ ```bash
98
+ python scripts/preprocess_dataset.py \
99
+ data/train.csv \
100
+ preprocessed/train \
101
+ 1 \
102
+ 0
103
+ ```
104
+
105
+ The last two arguments are `modulo` and `remainder`, used for array-job sharding.
106
+ For example, an HPC array with 100 tasks would run each shard with `modulo=100` and `remainder` equal to the task index. `preprocess_dataset.sh` is an example SLURM/Apptainer wrapper for that sharded mode and may need local cluster/container paths edited before use.
configs/NAIAD_model.json ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_comment": "NAIAD universal-transfer diffusion configuration",
3
+ "_description": "Diffusion-based sequence design over protein and nucleic-acid positions",
4
+ "VOCAB_SIZE": 33,
5
+ "NUM_LETTERS": 33,
6
+ "PARSE_PROTEIN": 1,
7
+ "PARSE_DNA": 1,
8
+ "PARSE_RNA": 1,
9
+ "PARSE_RNA_AS_DNA": 0,
10
+ "NA_SHARED_TOKENS": 1,
11
+ "NA_REF_ATOM": "C1'",
12
+ "INCLUDE_PRED_NA_N": 1,
13
+ "PROTEIN_BACKBONE_OCC_CUTOFF": 0.8,
14
+ "PROTEIN_SIDE_CHAIN_OCC_CUTOFF": 0.5,
15
+ "DNA_BACKBONE_OCC_CUTOFF": 0.8,
16
+ "DNA_SIDE_CHAIN_OCC_CUTOFF": 0.5,
17
+ "RNA_BACKBONE_OCC_CUTOFF": 0.8,
18
+ "RNA_SIDE_CHAIN_OCC_CUTOFF": 0.5,
19
+ "EXCLUDED_ELEMENTS": [
20
+ 1
21
+ ],
22
+ "DATE_CUTOFF": "2030-01-01",
23
+ "MAX_NUMBER_OF_PDBS_TRAIN": 50000,
24
+ "MAX_NUMBER_OF_PDBS_VALID": 500,
25
+ "BATCH_TOKENS": 6000,
26
+ "LOSS_TOKENS": 10000,
27
+ "LABEL_SMOOTHING": 0.1,
28
+ "EXCLUDE_RES": [
29
+ "HOH",
30
+ "NA",
31
+ "CL",
32
+ "K",
33
+ "BR"
34
+ ],
35
+ "MIN_PROTEIN_LENGTH_CUTOFF": 1,
36
+ "NUM_WORKERS": 32,
37
+ "TOTAL_STEPS": 300000,
38
+ "_total_steps_description": "Extended training for diffusion (300k steps)",
39
+ "RANDOMIZE_NMR_MODEL": 0,
40
+ "CROP_LARGE_STRUCTURES": 1,
41
+ "MIN_OVERLAP_LENGTH": 5,
42
+ "_data_paths_comment": "=== Data Paths ===",
43
+ "_pdb_mmcif_dir": "/path/to/pdb_mmcif/mmcif_files",
44
+ "DF_PATH_TRAIN": "data/naiad_universal_dataset/train.csv",
45
+ "DF_PATH_VALID": "data/naiad_universal_dataset/valid.csv",
46
+ "BASE_FOLDER": "models/naiad_universal_diffusion",
47
+ "_pretrained_comment": "Start from AR checkpoint converted to diffusion format",
48
+ "PREV_CHECKPOINT": null,
49
+ "TRUST_CHECKPOINT_PICKLE": false,
50
+ "_lr_comment": "=== Learning Rate Schedule (Cosine Annealing with Warmup) ===",
51
+ "LR_SCHEDULER": "cosine_warmup",
52
+ "LR_BASE": 5e-05,
53
+ "_lr_base_description": "Lower LR for fine-tuning (already have good NA weights)",
54
+ "LR_WARMUP_STEPS": 2000,
55
+ "LR_MIN": 1e-06,
56
+ "_wandb_comment": "=== Weights & Biases Logging ===",
57
+ "USE_WANDB": false,
58
+ "WANDB_PROJECT": "naiad",
59
+ "WANDB_ENTITY": null,
60
+ "WANDB_RUN_NAME": "naiad-universal-transfer",
61
+ "_callback_comment": "=== Callback Task (Anti-forgetting) ===",
62
+ "FULL_MASK_RATIO": 0.3,
63
+ "_baseline_comment": "=== Baseline Model for Comparison ===",
64
+ "BASELINE_CHECKPOINT": null,
65
+ "COMPARE_WITH_BASELINE": false,
66
+ "HIDDEN_DIM": 128,
67
+ "NUM_ENCODER_LAYERS": 3,
68
+ "NUM_DECODER_LAYERS": 3,
69
+ "NUM_NEIGHBORS": 32,
70
+ "DROPOUT": 0.1,
71
+ "PROTEIN_BACKBONE_NOISE": 0.1,
72
+ "DNA_BACKBONE_NOISE": 0.1,
73
+ "RNA_BACKBONE_NOISE": 0.1,
74
+ "PARSE_PPMS": 0,
75
+ "NA_ONLY_AS_UNIFORM_PPM": 0,
76
+ "DROP_PROTEIN_PROBABILITY": 0,
77
+ "PROTEIN_INTERFACE_RESIDUE_MUTATION_PROBABILITY": 0,
78
+ "MUTATE_BASE_PAIR_TOGETHER": 0,
79
+ "MUTATE_ENTIRE_SIDE_CHAIN_INTERFACE_PROBABILITY": 0,
80
+ "NA_NON_INTERFACE_AS_UNIFORM_PPM": 0,
81
+ "GRADIENT_NORM": 1.0,
82
+ "MIXED_PRECISION": 1,
83
+ "SAVE_EVERY_N_STEPS": 2000,
84
+ "ATOMS_TO_LOAD": "backbone",
85
+ "METRICS_TO_COMPUTE": "basic",
86
+ "_diffusion_comment": "=== Diffusion-Specific Parameters ===",
87
+ "MASK_RATIO_SCHEDULE": "uniform",
88
+ "MASK_RATIO_MIN": 0.0,
89
+ "MASK_RATIO_MAX": 1.0,
90
+ "LOSS_WEIGHT_STRATEGY": "snr",
91
+ "LOSS_WEIGHT_EPSILON": 0.1,
92
+ "_key_change_comment": "=== Universal-transfer setting: mask BOTH protein and NA ===",
93
+ "MASK_NA_ONLY": false,
94
+ "_mask_na_only_description": "Set to FALSE to mask both protein and nucleic acid positions",
95
+ "_mask_mode_comment": "=== Mask Mode Options ===",
96
+ "MASK_MODE": "all",
97
+ "_mask_mode_options": "all | protein_only | na_only | interface",
98
+ "_mask_mode_description": {
99
+ "all": "Mask all valid positions (protein + NA)",
100
+ "protein_only": "Only mask protein positions",
101
+ "na_only": "Only mask nucleic acid positions (original behavior)",
102
+ "interface": "Only mask interface positions"
103
+ },
104
+ "USE_SEQUENCE_CONTEXT": true,
105
+ "DIFFUSION_LABEL_SMOOTHING": 0.1,
106
+ "USE_IRM_PENALTY": false,
107
+ "IRM_PENALTY_WEIGHT": 0.0,
108
+ "IRM_MIN_TOKENS_PER_ENV": 1
109
+ }
data/test.csv ADDED
@@ -0,0 +1,322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,structure_path,date,dataset_name,sampling_probability,ppm_paths
2
+ 115d,structures/115d.cif,2024-01-01,diffusion_na,1.0,[]
3
+ 139d,structures/139d.cif,2024-01-01,diffusion_na,1.0,[]
4
+ 1ajt,structures/1ajt.cif,2024-01-01,diffusion_na,1.0,[]
5
+ 1cvx,structures/1cvx.cif,2024-01-01,diffusion_na,1.0,[]
6
+ 1cvy,structures/1cvy.cif,2024-01-01,diffusion_na,1.0,[]
7
+ 1d83,structures/1d83.cif,2024-01-01,diffusion_na,1.0,[]
8
+ 1dgc,structures/1dgc.cif,2024-01-01,diffusion_na,1.0,[]
9
+ 1dgo,structures/1dgo.cif,2024-01-01,diffusion_na,1.0,[]
10
+ 1dk9,structures/1dk9.cif,2024-01-01,diffusion_na,1.0,[]
11
+ 1dnk,structures/1dnk.cif,2024-01-01,diffusion_na,1.0,[]
12
+ 1duq,structures/1duq.cif,2024-01-01,diffusion_na,1.0,[]
13
+ 1hq1,structures/1hq1.cif,2024-01-01,diffusion_na,1.0,[]
14
+ 1ibm,structures/1ibm.cif,2024-01-01,diffusion_na,1.0,[]
15
+ 1idx,structures/1idx.cif,2024-01-01,diffusion_na,1.0,[]
16
+ 1ii1,structures/1ii1.cif,2024-01-01,diffusion_na,1.0,[]
17
+ 1ikk,structures/1ikk.cif,2024-01-01,diffusion_na,1.0,[]
18
+ 1j46,structures/1j46.cif,2024-01-01,diffusion_na,1.0,[]
19
+ 1j5k,structures/1j5k.cif,2024-01-01,diffusion_na,1.0,[]
20
+ 1jbr,structures/1jbr.cif,2024-01-01,diffusion_na,1.0,[]
21
+ 1jft,structures/1jft.cif,2024-01-01,diffusion_na,1.0,[]
22
+ 1jkq,structures/1jkq.cif,2024-01-01,diffusion_na,1.0,[]
23
+ 1jp0,structures/1jp0.cif,2024-01-01,diffusion_na,1.0,[]
24
+ 1juu,structures/1juu.cif,2024-01-01,diffusion_na,1.0,[]
25
+ 1kpy,structures/1kpy.cif,2024-01-01,diffusion_na,1.0,[]
26
+ 1ldz,structures/1ldz.cif,2024-01-01,diffusion_na,1.0,[]
27
+ 1lmv,structures/1lmv.cif,2024-01-01,diffusion_na,1.0,[]
28
+ 1lvs,structures/1lvs.cif,2024-01-01,diffusion_na,1.0,[]
29
+ 1m3h,structures/1m3h.cif,2024-01-01,diffusion_na,1.0,[]
30
+ 1m5x,structures/1m5x.cif,2024-01-01,diffusion_na,1.0,[]
31
+ 1n4e,structures/1n4e.cif,2024-01-01,diffusion_na,1.0,[]
32
+ 1na2,structures/1na2.cif,2024-01-01,diffusion_na,1.0,[]
33
+ 1ngm,structures/1ngm.cif,2024-01-01,diffusion_na,1.0,[]
34
+ 1ngu,structures/1ngu.cif,2024-01-01,diffusion_na,1.0,[]
35
+ 1pgl,structures/1pgl.cif,2024-01-01,diffusion_na,1.0,[]
36
+ 1pyj,structures/1pyj.cif,2024-01-01,diffusion_na,1.0,[]
37
+ 1qp7,structures/1qp7.cif,2024-01-01,diffusion_na,1.0,[]
38
+ 1qqb,structures/1qqb.cif,2024-01-01,diffusion_na,1.0,[]
39
+ 1skw,structures/1skw.cif,2024-01-01,diffusion_na,1.0,[]
40
+ 1sl0,structures/1sl0.cif,2024-01-01,diffusion_na,1.0,[]
41
+ 1sl2,structures/1sl2.cif,2024-01-01,diffusion_na,1.0,[]
42
+ 1sm5,structures/1sm5.cif,2024-01-01,diffusion_na,1.0,[]
43
+ 1szy,structures/1szy.cif,2024-01-01,diffusion_na,1.0,[]
44
+ 1vbx,structures/1vbx.cif,2024-01-01,diffusion_na,1.0,[]
45
+ 1vc5,structures/1vc5.cif,2024-01-01,diffusion_na,1.0,[]
46
+ 1vj4,structures/1vj4.cif,2024-01-01,diffusion_na,1.0,[]
47
+ 1x9c,structures/1x9c.cif,2024-01-01,diffusion_na,1.0,[]
48
+ 1xs9,structures/1xs9.cif,2024-01-01,diffusion_na,1.0,[]
49
+ 1yuj,structures/1yuj.cif,2024-01-01,diffusion_na,1.0,[]
50
+ 1yz9,structures/1yz9.cif,2024-01-01,diffusion_na,1.0,[]
51
+ 1zjf,structures/1zjf.cif,2024-01-01,diffusion_na,1.0,[]
52
+ 1zjg,structures/1zjg.cif,2024-01-01,diffusion_na,1.0,[]
53
+ 1zyg,structures/1zyg.cif,2024-01-01,diffusion_na,1.0,[]
54
+ 1zyh,structures/1zyh.cif,2024-01-01,diffusion_na,1.0,[]
55
+ 272d,structures/272d.cif,2024-01-01,diffusion_na,1.0,[]
56
+ 284d,structures/284d.cif,2024-01-01,diffusion_na,1.0,[]
57
+ 2a8v,structures/2a8v.cif,2024-01-01,diffusion_na,1.0,[]
58
+ 2bcu,structures/2bcu.cif,2024-01-01,diffusion_na,1.0,[]
59
+ 2bcz,structures/2bcz.cif,2024-01-01,diffusion_na,1.0,[]
60
+ 2cgp,structures/2cgp.cif,2024-01-01,diffusion_na,1.0,[]
61
+ 2d2k,structures/2d2k.cif,2024-01-01,diffusion_na,1.0,[]
62
+ 2d2l,structures/2d2l.cif,2024-01-01,diffusion_na,1.0,[]
63
+ 2d6f,structures/2d6f.cif,2024-01-01,diffusion_na,1.0,[]
64
+ 2dgc,structures/2dgc.cif,2024-01-01,diffusion_na,1.0,[]
65
+ 2err,structures/2err.cif,2024-01-01,diffusion_na,1.0,[]
66
+ 2fjw,structures/2fjw.cif,2024-01-01,diffusion_na,1.0,[]
67
+ 2flc,structures/2flc.cif,2024-01-01,diffusion_na,1.0,[]
68
+ 2fll,structures/2fll.cif,2024-01-01,diffusion_na,1.0,[]
69
+ 2gtt,structures/2gtt.cif,2024-01-01,diffusion_na,1.0,[]
70
+ 2h0s,structures/2h0s.cif,2024-01-01,diffusion_na,1.0,[]
71
+ 2ho6,structures/2ho6.cif,2024-01-01,diffusion_na,1.0,[]
72
+ 2i3q,structures/2i3q.cif,2024-01-01,diffusion_na,1.0,[]
73
+ 2ihn,structures/2ihn.cif,2024-01-01,diffusion_na,1.0,[]
74
+ 2jlw,structures/2jlw.cif,2024-01-01,diffusion_na,1.0,[]
75
+ 2l13,structures/2l13.cif,2024-01-01,diffusion_na,1.0,[]
76
+ 2llj,structures/2llj.cif,2024-01-01,diffusion_na,1.0,[]
77
+ 2m12,structures/2m12.cif,2024-01-01,diffusion_na,1.0,[]
78
+ 2m8k,structures/2m8k.cif,2024-01-01,diffusion_na,1.0,[]
79
+ 2mb2,structures/2mb2.cif,2024-01-01,diffusion_na,1.0,[]
80
+ 2moe,structures/2moe.cif,2024-01-01,diffusion_na,1.0,[]
81
+ 2n0q,structures/2n0q.cif,2024-01-01,diffusion_na,1.0,[]
82
+ 2n3o,structures/2n3o.cif,2024-01-01,diffusion_na,1.0,[]
83
+ 2npy,structures/2npy.cif,2024-01-01,diffusion_na,1.0,[]
84
+ 2npz,structures/2npz.cif,2024-01-01,diffusion_na,1.0,[]
85
+ 2o33,structures/2o33.cif,2024-01-01,diffusion_na,1.0,[]
86
+ 2oih,structures/2oih.cif,2024-01-01,diffusion_na,1.0,[]
87
+ 2oj3,structures/2oj3.cif,2024-01-01,diffusion_na,1.0,[]
88
+ 2ost,structures/2ost.cif,2024-01-01,diffusion_na,1.0,[]
89
+ 2p7d,structures/2p7d.cif,2024-01-01,diffusion_na,1.0,[]
90
+ 2p7e,structures/2p7e.cif,2024-01-01,diffusion_na,1.0,[]
91
+ 2pl4,structures/2pl4.cif,2024-01-01,diffusion_na,1.0,[]
92
+ 2pl8,structures/2pl8.cif,2024-01-01,diffusion_na,1.0,[]
93
+ 2plo,structures/2plo.cif,2024-01-01,diffusion_na,1.0,[]
94
+ 2puc,structures/2puc.cif,2024-01-01,diffusion_na,1.0,[]
95
+ 2pud,structures/2pud.cif,2024-01-01,diffusion_na,1.0,[]
96
+ 2pue,structures/2pue.cif,2024-01-01,diffusion_na,1.0,[]
97
+ 2puf,structures/2puf.cif,2024-01-01,diffusion_na,1.0,[]
98
+ 2pxe,structures/2pxe.cif,2024-01-01,diffusion_na,1.0,[]
99
+ 2pxt,structures/2pxt.cif,2024-01-01,diffusion_na,1.0,[]
100
+ 2pxu,structures/2pxu.cif,2024-01-01,diffusion_na,1.0,[]
101
+ 2pxv,structures/2pxv.cif,2024-01-01,diffusion_na,1.0,[]
102
+ 2rvo,structures/2rvo.cif,2024-01-01,diffusion_na,1.0,[]
103
+ 2vbn,structures/2vbn.cif,2024-01-01,diffusion_na,1.0,[]
104
+ 2vum,structures/2vum.cif,2024-01-01,diffusion_na,1.0,[]
105
+ 2wtu,structures/2wtu.cif,2024-01-01,diffusion_na,1.0,[]
106
+ 2xct,structures/2xct.cif,2024-01-01,diffusion_na,1.0,[]
107
+ 2xro,structures/2xro.cif,2024-01-01,diffusion_na,1.0,[]
108
+ 2z74,structures/2z74.cif,2024-01-01,diffusion_na,1.0,[]
109
+ 357d,structures/357d.cif,2024-01-01,diffusion_na,1.0,[]
110
+ 361d,structures/361d.cif,2024-01-01,diffusion_na,1.0,[]
111
+ 3adi,structures/3adi.cif,2024-01-01,diffusion_na,1.0,[]
112
+ 3agv,structures/3agv.cif,2024-01-01,diffusion_na,1.0,[]
113
+ 3b4b,structures/3b4b.cif,2024-01-01,diffusion_na,1.0,[]
114
+ 3bep,structures/3bep.cif,2024-01-01,diffusion_na,1.0,[]
115
+ 3bse,structures/3bse.cif,2024-01-01,diffusion_na,1.0,[]
116
+ 3c0w,structures/3c0w.cif,2024-01-01,diffusion_na,1.0,[]
117
+ 3coa,structures/3coa.cif,2024-01-01,diffusion_na,1.0,[]
118
+ 3dh3,structures/3dh3.cif,2024-01-01,diffusion_na,1.0,[]
119
+ 3foz,structures/3foz.cif,2024-01-01,diffusion_na,1.0,[]
120
+ 3hxo,structures/3hxo.cif,2024-01-01,diffusion_na,1.0,[]
121
+ 3hxq,structures/3hxq.cif,2024-01-01,diffusion_na,1.0,[]
122
+ 3jce,structures/3jce.cif,2024-01-01,diffusion_na,1.0,[]
123
+ 3k4x,structures/3k4x.cif,2024-01-01,diffusion_na,1.0,[]
124
+ 3l1p,structures/3l1p.cif,2024-01-01,diffusion_na,1.0,[]
125
+ 3l2p,structures/3l2p.cif,2024-01-01,diffusion_na,1.0,[]
126
+ 3loa,structures/3loa.cif,2024-01-01,diffusion_na,1.0,[]
127
+ 3lqx,structures/3lqx.cif,2024-01-01,diffusion_na,1.0,[]
128
+ 3os0,structures/3os0.cif,2024-01-01,diffusion_na,1.0,[]
129
+ 3pu0,structures/3pu0.cif,2024-01-01,diffusion_na,1.0,[]
130
+ 3pu1,structures/3pu1.cif,2024-01-01,diffusion_na,1.0,[]
131
+ 3q2t,structures/3q2t.cif,2024-01-01,diffusion_na,1.0,[]
132
+ 3qg9,structures/3qg9.cif,2024-01-01,diffusion_na,1.0,[]
133
+ 3qgc,structures/3qgc.cif,2024-01-01,diffusion_na,1.0,[]
134
+ 3r1l,structures/3r1l.cif,2024-01-01,diffusion_na,1.0,[]
135
+ 3sq2,structures/3sq2.cif,2024-01-01,diffusion_na,1.0,[]
136
+ 3ssf,structures/3ssf.cif,2024-01-01,diffusion_na,1.0,[]
137
+ 3szq,structures/3szq.cif,2024-01-01,diffusion_na,1.0,[]
138
+ 3tzr,structures/3tzr.cif,2024-01-01,diffusion_na,1.0,[]
139
+ 3ufd,structures/3ufd.cif,2024-01-01,diffusion_na,1.0,[]
140
+ 3ugo,structures/3ugo.cif,2024-01-01,diffusion_na,1.0,[]
141
+ 3v72,structures/3v72.cif,2024-01-01,diffusion_na,1.0,[]
142
+ 3va3,structures/3va3.cif,2024-01-01,diffusion_na,1.0,[]
143
+ 3vw4,structures/3vw4.cif,2024-01-01,diffusion_na,1.0,[]
144
+ 431d,structures/431d.cif,2024-01-01,diffusion_na,1.0,[]
145
+ 4a3d,structures/4a3d.cif,2024-01-01,diffusion_na,1.0,[]
146
+ 4a3k,structures/4a3k.cif,2024-01-01,diffusion_na,1.0,[]
147
+ 4aij,structures/4aij.cif,2024-01-01,diffusion_na,1.0,[]
148
+ 4ati,structures/4ati.cif,2024-01-01,diffusion_na,1.0,[]
149
+ 4b3r,structures/4b3r.cif,2024-01-01,diffusion_na,1.0,[]
150
+ 4by7,structures/4by7.cif,2024-01-01,diffusion_na,1.0,[]
151
+ 4fgn,structures/4fgn.cif,2024-01-01,diffusion_na,1.0,[]
152
+ 4fxd,structures/4fxd.cif,2024-01-01,diffusion_na,1.0,[]
153
+ 4g6r,structures/4g6r.cif,2024-01-01,diffusion_na,1.0,[]
154
+ 4ki2,structures/4ki2.cif,2024-01-01,diffusion_na,1.0,[]
155
+ 4lnt,structures/4lnt.cif,2024-01-01,diffusion_na,1.0,[]
156
+ 4lt8,structures/4lt8.cif,2024-01-01,diffusion_na,1.0,[]
157
+ 4lw0,structures/4lw0.cif,2024-01-01,diffusion_na,1.0,[]
158
+ 4m59,structures/4m59.cif,2024-01-01,diffusion_na,1.0,[]
159
+ 4meg,structures/4meg.cif,2024-01-01,diffusion_na,1.0,[]
160
+ 4mfa,structures/4mfa.cif,2024-01-01,diffusion_na,1.0,[]
161
+ 4mgm,structures/4mgm.cif,2024-01-01,diffusion_na,1.0,[]
162
+ 4mky,structures/4mky.cif,2024-01-01,diffusion_na,1.0,[]
163
+ 4oe1,structures/4oe1.cif,2024-01-01,diffusion_na,1.0,[]
164
+ 4oqu,structures/4oqu.cif,2024-01-01,diffusion_na,1.0,[]
165
+ 4p97,structures/4p97.cif,2024-01-01,diffusion_na,1.0,[]
166
+ 4pjo,structures/4pjo.cif,2024-01-01,diffusion_na,1.0,[]
167
+ 4plx,structures/4plx.cif,2024-01-01,diffusion_na,1.0,[]
168
+ 4prf,structures/4prf.cif,2024-01-01,diffusion_na,1.0,[]
169
+ 4q9r,structures/4q9r.cif,2024-01-01,diffusion_na,1.0,[]
170
+ 4qz8,structures/4qz8.cif,2024-01-01,diffusion_na,1.0,[]
171
+ 4qz9,structures/4qz9.cif,2024-01-01,diffusion_na,1.0,[]
172
+ 4qzc,structures/4qzc.cif,2024-01-01,diffusion_na,1.0,[]
173
+ 4ri9,structures/4ri9.cif,2024-01-01,diffusion_na,1.0,[]
174
+ 4rwp,structures/4rwp.cif,2024-01-01,diffusion_na,1.0,[]
175
+ 4tue,structures/4tue.cif,2024-01-01,diffusion_na,1.0,[]
176
+ 4tzx,structures/4tzx.cif,2024-01-01,diffusion_na,1.0,[]
177
+ 4tzy,structures/4tzy.cif,2024-01-01,diffusion_na,1.0,[]
178
+ 4v5j,structures/4v5j.cif,2024-01-01,diffusion_na,1.0,[]
179
+ 4v8q,structures/4v8q.cif,2024-01-01,diffusion_na,1.0,[]
180
+ 4wtc,structures/4wtc.cif,2024-01-01,diffusion_na,1.0,[]
181
+ 4wul,structures/4wul.cif,2024-01-01,diffusion_na,1.0,[]
182
+ 4x0g,structures/4x0g.cif,2024-01-01,diffusion_na,1.0,[]
183
+ 4xvl,structures/4xvl.cif,2024-01-01,diffusion_na,1.0,[]
184
+ 4yfu,structures/4yfu.cif,2024-01-01,diffusion_na,1.0,[]
185
+ 4znp,structures/4znp.cif,2024-01-01,diffusion_na,1.0,[]
186
+ 5amq,structures/5amq.cif,2024-01-01,diffusion_na,1.0,[]
187
+ 5b2p,structures/5b2p.cif,2024-01-01,diffusion_na,1.0,[]
188
+ 5bng,structures/5bng.cif,2024-01-01,diffusion_na,1.0,[]
189
+ 5cdn,structures/5cdn.cif,2024-01-01,diffusion_na,1.0,[]
190
+ 5cpi,structures/5cpi.cif,2024-01-01,diffusion_na,1.0,[]
191
+ 5cv2,structures/5cv2.cif,2024-01-01,diffusion_na,1.0,[]
192
+ 5d2q,structures/5d2q.cif,2024-01-01,diffusion_na,1.0,[]
193
+ 5d9i,structures/5d9i.cif,2024-01-01,diffusion_na,1.0,[]
194
+ 5dv7,structures/5dv7.cif,2024-01-01,diffusion_na,1.0,[]
195
+ 5e18,structures/5e18.cif,2024-01-01,diffusion_na,1.0,[]
196
+ 5e5s,structures/5e5s.cif,2024-01-01,diffusion_na,1.0,[]
197
+ 5h3u,structures/5h3u.cif,2024-01-01,diffusion_na,1.0,[]
198
+ 5hbw,structures/5hbw.cif,2024-01-01,diffusion_na,1.0,[]
199
+ 5jea,structures/5jea.cif,2024-01-01,diffusion_na,1.0,[]
200
+ 5k5r,structures/5k5r.cif,2024-01-01,diffusion_na,1.0,[]
201
+ 5k7c,structures/5k7c.cif,2024-01-01,diffusion_na,1.0,[]
202
+ 5k7d,structures/5k7d.cif,2024-01-01,diffusion_na,1.0,[]
203
+ 5n90,structures/5n90.cif,2024-01-01,diffusion_na,1.0,[]
204
+ 5swd,structures/5swd.cif,2024-01-01,diffusion_na,1.0,[]
205
+ 5swe,structures/5swe.cif,2024-01-01,diffusion_na,1.0,[]
206
+ 5t2h,structures/5t2h.cif,2024-01-01,diffusion_na,1.0,[]
207
+ 5u30,structures/5u30.cif,2024-01-01,diffusion_na,1.0,[]
208
+ 5v17,structures/5v17.cif,2024-01-01,diffusion_na,1.0,[]
209
+ 5vfx,structures/5vfx.cif,2024-01-01,diffusion_na,1.0,[]
210
+ 5w2a,structures/5w2a.cif,2024-01-01,diffusion_na,1.0,[]
211
+ 5wzh,structures/5wzh.cif,2024-01-01,diffusion_na,1.0,[]
212
+ 5wzi,structures/5wzi.cif,2024-01-01,diffusion_na,1.0,[]
213
+ 5xvp,structures/5xvp.cif,2024-01-01,diffusion_na,1.0,[]
214
+ 5y7g,structures/5y7g.cif,2024-01-01,diffusion_na,1.0,[]
215
+ 5yzy,structures/5yzy.cif,2024-01-01,diffusion_na,1.0,[]
216
+ 5ze2,structures/5ze2.cif,2024-01-01,diffusion_na,1.0,[]
217
+ 5zjs,structures/5zjs.cif,2024-01-01,diffusion_na,1.0,[]
218
+ 5zk1,structures/5zk1.cif,2024-01-01,diffusion_na,1.0,[]
219
+ 5zsl,structures/5zsl.cif,2024-01-01,diffusion_na,1.0,[]
220
+ 5zux,structures/5zux.cif,2024-01-01,diffusion_na,1.0,[]
221
+ 6ar1,structures/6ar1.cif,2024-01-01,diffusion_na,1.0,[]
222
+ 6ar3,structures/6ar3.cif,2024-01-01,diffusion_na,1.0,[]
223
+ 6ar5,structures/6ar5.cif,2024-01-01,diffusion_na,1.0,[]
224
+ 6b14,structures/6b14.cif,2024-01-01,diffusion_na,1.0,[]
225
+ 6bwy,structures/6bwy.cif,2024-01-01,diffusion_na,1.0,[]
226
+ 6cao,structures/6cao.cif,2024-01-01,diffusion_na,1.0,[]
227
+ 6cap,structures/6cap.cif,2024-01-01,diffusion_na,1.0,[]
228
+ 6cmn,structures/6cmn.cif,2024-01-01,diffusion_na,1.0,[]
229
+ 6cst,structures/6cst.cif,2024-01-01,diffusion_na,1.0,[]
230
+ 6cvo,structures/6cvo.cif,2024-01-01,diffusion_na,1.0,[]
231
+ 6fb8,structures/6fb8.cif,2024-01-01,diffusion_na,1.0,[]
232
+ 6fb9,structures/6fb9.cif,2024-01-01,diffusion_na,1.0,[]
233
+ 6ftu,structures/6ftu.cif,2024-01-01,diffusion_na,1.0,[]
234
+ 6fz0,structures/6fz0.cif,2024-01-01,diffusion_na,1.0,[]
235
+ 6gb2,structures/6gb2.cif,2024-01-01,diffusion_na,1.0,[]
236
+ 6hag,structures/6hag.cif,2024-01-01,diffusion_na,1.0,[]
237
+ 6iod,structures/6iod.cif,2024-01-01,diffusion_na,1.0,[]
238
+ 6ir8,structures/6ir8.cif,2024-01-01,diffusion_na,1.0,[]
239
+ 6is8,structures/6is8.cif,2024-01-01,diffusion_na,1.0,[]
240
+ 6iuc,structures/6iuc.cif,2024-01-01,diffusion_na,1.0,[]
241
+ 6jdv,structures/6jdv.cif,2024-01-01,diffusion_na,1.0,[]
242
+ 6jfu,structures/6jfu.cif,2024-01-01,diffusion_na,1.0,[]
243
+ 6jgw,structures/6jgw.cif,2024-01-01,diffusion_na,1.0,[]
244
+ 6jni,structures/6jni.cif,2024-01-01,diffusion_na,1.0,[]
245
+ 6jrf,structures/6jrf.cif,2024-01-01,diffusion_na,1.0,[]
246
+ 6jrp,structures/6jrp.cif,2024-01-01,diffusion_na,1.0,[]
247
+ 6k1k,structures/6k1k.cif,2024-01-01,diffusion_na,1.0,[]
248
+ 6l6s,structures/6l6s.cif,2024-01-01,diffusion_na,1.0,[]
249
+ 6lwr,structures/6lwr.cif,2024-01-01,diffusion_na,1.0,[]
250
+ 6m3l,structures/6m3l.cif,2024-01-01,diffusion_na,1.0,[]
251
+ 6mur,structures/6mur.cif,2024-01-01,diffusion_na,1.0,[]
252
+ 6n7r,structures/6n7r.cif,2024-01-01,diffusion_na,1.0,[]
253
+ 6o1k,structures/6o1k.cif,2024-01-01,diffusion_na,1.0,[]
254
+ 6o1l,structures/6o1l.cif,2024-01-01,diffusion_na,1.0,[]
255
+ 6o7i,structures/6o7i.cif,2024-01-01,diffusion_na,1.0,[]
256
+ 6o8q,structures/6o8q.cif,2024-01-01,diffusion_na,1.0,[]
257
+ 6oes,structures/6oes.cif,2024-01-01,diffusion_na,1.0,[]
258
+ 6oet,structures/6oet.cif,2024-01-01,diffusion_na,1.0,[]
259
+ 6oy7,structures/6oy7.cif,2024-01-01,diffusion_na,1.0,[]
260
+ 6rfl,structures/6rfl.cif,2024-01-01,diffusion_na,1.0,[]
261
+ 6rja,structures/6rja.cif,2024-01-01,diffusion_na,1.0,[]
262
+ 6rjd,structures/6rjd.cif,2024-01-01,diffusion_na,1.0,[]
263
+ 6rjg,structures/6rjg.cif,2024-01-01,diffusion_na,1.0,[]
264
+ 6sdy,structures/6sdy.cif,2024-01-01,diffusion_na,1.0,[]
265
+ 6ugj,structures/6ugj.cif,2024-01-01,diffusion_na,1.0,[]
266
+ 6vaa,structures/6vaa.cif,2024-01-01,diffusion_na,1.0,[]
267
+ 6vtx,structures/6vtx.cif,2024-01-01,diffusion_na,1.0,[]
268
+ 6vwt,structures/6vwt.cif,2024-01-01,diffusion_na,1.0,[]
269
+ 6waa,structures/6waa.cif,2024-01-01,diffusion_na,1.0,[]
270
+ 6wmu,structures/6wmu.cif,2024-01-01,diffusion_na,1.0,[]
271
+ 6xh3,structures/6xh3.cif,2024-01-01,diffusion_na,1.0,[]
272
+ 6xo6,structures/6xo6.cif,2024-01-01,diffusion_na,1.0,[]
273
+ 6xo9,structures/6xo9.cif,2024-01-01,diffusion_na,1.0,[]
274
+ 6z8k,structures/6z8k.cif,2024-01-01,diffusion_na,1.0,[]
275
+ 6za3,structures/6za3.cif,2024-01-01,diffusion_na,1.0,[]
276
+ 7b1y,structures/7b1y.cif,2024-01-01,diffusion_na,1.0,[]
277
+ 7cli,structures/7cli.cif,2024-01-01,diffusion_na,1.0,[]
278
+ 7cyq,structures/7cyq.cif,2024-01-01,diffusion_na,1.0,[]
279
+ 7d3v,structures/7d3v.cif,2024-01-01,diffusion_na,1.0,[]
280
+ 7d3w,structures/7d3w.cif,2024-01-01,diffusion_na,1.0,[]
281
+ 7dn3,structures/7dn3.cif,2024-01-01,diffusion_na,1.0,[]
282
+ 7eiu,structures/7eiu.cif,2024-01-01,diffusion_na,1.0,[]
283
+ 7f36,structures/7f36.cif,2024-01-01,diffusion_na,1.0,[]
284
+ 7jfx,structures/7jfx.cif,2024-01-01,diffusion_na,1.0,[]
285
+ 7jht,structures/7jht.cif,2024-01-01,diffusion_na,1.0,[]
286
+ 7jj5,structures/7jj5.cif,2024-01-01,diffusion_na,1.0,[]
287
+ 7jjy,structures/7jjy.cif,2024-01-01,diffusion_na,1.0,[]
288
+ 7jkd,structures/7jkd.cif,2024-01-01,diffusion_na,1.0,[]
289
+ 7jkg,structures/7jkg.cif,2024-01-01,diffusion_na,1.0,[]
290
+ 7jkh,structures/7jkh.cif,2024-01-01,diffusion_na,1.0,[]
291
+ 7jnh,structures/7jnh.cif,2024-01-01,diffusion_na,1.0,[]
292
+ 7jnj,structures/7jnj.cif,2024-01-01,diffusion_na,1.0,[]
293
+ 7jnk,structures/7jnk.cif,2024-01-01,diffusion_na,1.0,[]
294
+ 7jp7,structures/7jp7.cif,2024-01-01,diffusion_na,1.0,[]
295
+ 7jsb,structures/7jsb.cif,2024-01-01,diffusion_na,1.0,[]
296
+ 7kjv,structures/7kjv.cif,2024-01-01,diffusion_na,1.0,[]
297
+ 7kkv,structures/7kkv.cif,2024-01-01,diffusion_na,1.0,[]
298
+ 7l4y,structures/7l4y.cif,2024-01-01,diffusion_na,1.0,[]
299
+ 7lyf,structures/7lyf.cif,2024-01-01,diffusion_na,1.0,[]
300
+ 7m0a,structures/7m0a.cif,2024-01-01,diffusion_na,1.0,[]
301
+ 7m99,structures/7m99.cif,2024-01-01,diffusion_na,1.0,[]
302
+ 7nbl,structures/7nbl.cif,2024-01-01,diffusion_na,1.0,[]
303
+ 7nha,structures/7nha.cif,2024-01-01,diffusion_na,1.0,[]
304
+ 7ni0,structures/7ni0.cif,2024-01-01,diffusion_na,1.0,[]
305
+ 7nsh,structures/7nsh.cif,2024-01-01,diffusion_na,1.0,[]
306
+ 7nwt,structures/7nwt.cif,2024-01-01,diffusion_na,1.0,[]
307
+ 7og0,structures/7og0.cif,2024-01-01,diffusion_na,1.0,[]
308
+ 7ork,structures/7ork.cif,2024-01-01,diffusion_na,1.0,[]
309
+ 7orm,structures/7orm.cif,2024-01-01,diffusion_na,1.0,[]
310
+ 7osm,structures/7osm.cif,2024-01-01,diffusion_na,1.0,[]
311
+ 7pwg,structures/7pwg.cif,2024-01-01,diffusion_na,1.0,[]
312
+ 7r5s,structures/7r5s.cif,2024-01-01,diffusion_na,1.0,[]
313
+ 7r77,structures/7r77.cif,2024-01-01,diffusion_na,1.0,[]
314
+ 7r78,structures/7r78.cif,2024-01-01,diffusion_na,1.0,[]
315
+ 7u3o,structures/7u3o.cif,2024-01-01,diffusion_na,1.0,[]
316
+ 7uga,structures/7uga.cif,2024-01-01,diffusion_na,1.0,[]
317
+ 7v9i,structures/7v9i.cif,2024-01-01,diffusion_na,1.0,[]
318
+ 7vjq,structures/7vjq.cif,2024-01-01,diffusion_na,1.0,[]
319
+ 7wb0,structures/7wb0.cif,2024-01-01,diffusion_na,1.0,[]
320
+ 7z4j,structures/7z4j.cif,2024-01-01,diffusion_na,1.0,[]
321
+ 7zq6,structures/7zq6.cif,2024-01-01,diffusion_na,1.0,[]
322
+ 8dqx,structures/8dqx.cif,2024-01-01,diffusion_na,1.0,[]
data/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/valid.csv ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,structure_path,date,dataset_name,sampling_probability,ppm_paths
2
+ 123d,structures/123d.cif,2024-01-01,diffusion_na,1.0,[]
3
+ 1a9h,structures/1a9h.cif,2024-01-01,diffusion_na,1.0,[]
4
+ 1aju,structures/1aju.cif,2024-01-01,diffusion_na,1.0,[]
5
+ 1al9,structures/1al9.cif,2024-01-01,diffusion_na,1.0,[]
6
+ 1bd1,structures/1bd1.cif,2024-01-01,diffusion_na,1.0,[]
7
+ 1bg1,structures/1bg1.cif,2024-01-01,diffusion_na,1.0,[]
8
+ 1bhm,structures/1bhm.cif,2024-01-01,diffusion_na,1.0,[]
9
+ 1cw9,structures/1cw9.cif,2024-01-01,diffusion_na,1.0,[]
10
+ 1e4p,structures/1e4p.cif,2024-01-01,diffusion_na,1.0,[]
11
+ 1e7j,structures/1e7j.cif,2024-01-01,diffusion_na,1.0,[]
12
+ 1eop,structures/1eop.cif,2024-01-01,diffusion_na,1.0,[]
13
+ 1f7i,structures/1f7i.cif,2024-01-01,diffusion_na,1.0,[]
14
+ 1gqu,structures/1gqu.cif,2024-01-01,diffusion_na,1.0,[]
15
+ 1guc,structures/1guc.cif,2024-01-01,diffusion_na,1.0,[]
16
+ 1hc8,structures/1hc8.cif,2024-01-01,diffusion_na,1.0,[]
17
+ 1i6j,structures/1i6j.cif,2024-01-01,diffusion_na,1.0,[]
18
+ 1ik5,structures/1ik5.cif,2024-01-01,diffusion_na,1.0,[]
19
+ 1imh,structures/1imh.cif,2024-01-01,diffusion_na,1.0,[]
20
+ 1jur,structures/1jur.cif,2024-01-01,diffusion_na,1.0,[]
21
+ 1k8w,structures/1k8w.cif,2024-01-01,diffusion_na,1.0,[]
22
+ 1kh6,structures/1kh6.cif,2024-01-01,diffusion_na,1.0,[]
23
+ 1kos,structures/1kos.cif,2024-01-01,diffusion_na,1.0,[]
24
+ 1lc6,structures/1lc6.cif,2024-01-01,diffusion_na,1.0,[]
25
+ 1m5o,structures/1m5o.cif,2024-01-01,diffusion_na,1.0,[]
26
+ 1m5p,structures/1m5p.cif,2024-01-01,diffusion_na,1.0,[]
27
+ 1m77,structures/1m77.cif,2024-01-01,diffusion_na,1.0,[]
28
+ 1mms,structures/1mms.cif,2024-01-01,diffusion_na,1.0,[]
29
+ 1o3r,structures/1o3r.cif,2024-01-01,diffusion_na,1.0,[]
30
+ 1o3t,structures/1o3t.cif,2024-01-01,diffusion_na,1.0,[]
31
+ 1odh,structures/1odh.cif,2024-01-01,diffusion_na,1.0,[]
32
+ 1ouq,structures/1ouq.cif,2024-01-01,diffusion_na,1.0,[]
33
+ 1owr,structures/1owr.cif,2024-01-01,diffusion_na,1.0,[]
34
+ 1p0u,structures/1p0u.cif,2024-01-01,diffusion_na,1.0,[]
35
+ 1p96,structures/1p96.cif,2024-01-01,diffusion_na,1.0,[]
36
+ 1pik,structures/1pik.cif,2024-01-01,diffusion_na,1.0,[]
37
+ 1q96,structures/1q96.cif,2024-01-01,diffusion_na,1.0,[]
38
+ 1qx0,structures/1qx0.cif,2024-01-01,diffusion_na,1.0,[]
39
+ 1r3e,structures/1r3e.cif,2024-01-01,diffusion_na,1.0,[]
40
+ 1rh6,structures/1rh6.cif,2024-01-01,diffusion_na,1.0,[]
41
+ 1ruo,structures/1ruo.cif,2024-01-01,diffusion_na,1.0,[]
42
+ 1s6m,structures/1s6m.cif,2024-01-01,diffusion_na,1.0,[]
43
+ 1u78,structures/1u78.cif,2024-01-01,diffusion_na,1.0,[]
44
+ 1u8b,structures/1u8b.cif,2024-01-01,diffusion_na,1.0,[]
45
+ 1uts,structures/1uts.cif,2024-01-01,diffusion_na,1.0,[]
46
+ 1wtx,structures/1wtx.cif,2024-01-01,diffusion_na,1.0,[]
47
+ 1xsh,structures/1xsh.cif,2024-01-01,diffusion_na,1.0,[]
48
+ 1ylg,structures/1ylg.cif,2024-01-01,diffusion_na,1.0,[]
49
+ 1yng,structures/1yng.cif,2024-01-01,diffusion_na,1.0,[]
50
+ 1ysa,structures/1ysa.cif,2024-01-01,diffusion_na,1.0,[]
51
+ 1ze2,structures/1ze2.cif,2024-01-01,diffusion_na,1.0,[]
52
+ 1zfa,structures/1zfa.cif,2024-01-01,diffusion_na,1.0,[]
53
+ 2a7e,structures/2a7e.cif,2024-01-01,diffusion_na,1.0,[]
54
+ 2ab4,structures/2ab4.cif,2024-01-01,diffusion_na,1.0,[]
55
+ 2adw,structures/2adw.cif,2024-01-01,diffusion_na,1.0,[]
56
+ 2aoq,structures/2aoq.cif,2024-01-01,diffusion_na,1.0,[]
57
+ 2b0e,structures/2b0e.cif,2024-01-01,diffusion_na,1.0,[]
58
+ 2bcs,structures/2bcs.cif,2024-01-01,diffusion_na,1.0,[]
59
+ 2cd5,structures/2cd5.cif,2024-01-01,diffusion_na,1.0,[]
60
+ 2d25,structures/2d25.cif,2024-01-01,diffusion_na,1.0,[]
61
+ 2dd1,structures/2dd1.cif,2024-01-01,diffusion_na,1.0,[]
62
+ 2ex5,structures/2ex5.cif,2024-01-01,diffusion_na,1.0,[]
63
+ 2fld,structures/2fld.cif,2024-01-01,diffusion_na,1.0,[]
64
+ 2g1p,structures/2g1p.cif,2024-01-01,diffusion_na,1.0,[]
65
+ 2g1z,structures/2g1z.cif,2024-01-01,diffusion_na,1.0,[]
66
+ 2irn,structures/2irn.cif,2024-01-01,diffusion_na,1.0,[]
67
+ 2k41,structures/2k41.cif,2024-01-01,diffusion_na,1.0,[]
68
+ 2kf0,structures/2kf0.cif,2024-01-01,diffusion_na,1.0,[]
69
+ 2kh3,structures/2kh3.cif,2024-01-01,diffusion_na,1.0,[]
70
+ 2kn7,structures/2kn7.cif,2024-01-01,diffusion_na,1.0,[]
71
+ 2ktq,structures/2ktq.cif,2024-01-01,diffusion_na,1.0,[]
72
+ 2kzl,structures/2kzl.cif,2024-01-01,diffusion_na,1.0,[]
73
+ 2lqz,structures/2lqz.cif,2024-01-01,diffusion_na,1.0,[]
74
+ 2lvy,structures/2lvy.cif,2024-01-01,diffusion_na,1.0,[]
75
+ 2mi0,structures/2mi0.cif,2024-01-01,diffusion_na,1.0,[]
76
+ 2miv,structures/2miv.cif,2024-01-01,diffusion_na,1.0,[]
77
+ 2ms0,structures/2ms0.cif,2024-01-01,diffusion_na,1.0,[]
78
+ 2nci,structures/2nci.cif,2024-01-01,diffusion_na,1.0,[]
79
+ 2nuf,structures/2nuf.cif,2024-01-01,diffusion_na,1.0,[]
80
+ 2ozb,structures/2ozb.cif,2024-01-01,diffusion_na,1.0,[]
81
+ 2ply,structures/2ply.cif,2024-01-01,diffusion_na,1.0,[]
82
+ 2pn3,structures/2pn3.cif,2024-01-01,diffusion_na,1.0,[]
83
+ 2r8j,structures/2r8j.cif,2024-01-01,diffusion_na,1.0,[]
84
+ 2rdj,structures/2rdj.cif,2024-01-01,diffusion_na,1.0,[]
85
+ 2rpt,structures/2rpt.cif,2024-01-01,diffusion_na,1.0,[]
86
+ 2voa,structures/2voa.cif,2024-01-01,diffusion_na,1.0,[]
87
+ 2zjr,structures/2zjr.cif,2024-01-01,diffusion_na,1.0,[]
88
+ 2zko,structures/2zko.cif,2024-01-01,diffusion_na,1.0,[]
89
+ 2zy6,structures/2zy6.cif,2024-01-01,diffusion_na,1.0,[]
90
+ 375d,structures/375d.cif,2024-01-01,diffusion_na,1.0,[]
91
+ 376d,structures/376d.cif,2024-01-01,diffusion_na,1.0,[]
92
+ 395d,structures/395d.cif,2024-01-01,diffusion_na,1.0,[]
93
+ 3avu,structures/3avu.cif,2024-01-01,diffusion_na,1.0,[]
94
+ 3bo2,structures/3bo2.cif,2024-01-01,diffusion_na,1.0,[]
95
+ 3bo3,structures/3bo3.cif,2024-01-01,diffusion_na,1.0,[]
96
+ 3cvv,structures/3cvv.cif,2024-01-01,diffusion_na,1.0,[]
97
+ 3cvy,structures/3cvy.cif,2024-01-01,diffusion_na,1.0,[]
98
+ 3e2e,structures/3e2e.cif,2024-01-01,diffusion_na,1.0,[]
99
+ 3e44,structures/3e44.cif,2024-01-01,diffusion_na,1.0,[]
100
+ 3eog,structures/3eog.cif,2024-01-01,diffusion_na,1.0,[]
101
+ 3fte,structures/3fte.cif,2024-01-01,diffusion_na,1.0,[]
102
+ 3ftf,structures/3ftf.cif,2024-01-01,diffusion_na,1.0,[]
103
+ 3g9y,structures/3g9y.cif,2024-01-01,diffusion_na,1.0,[]
104
+ 3go3,structures/3go3.cif,2024-01-01,diffusion_na,1.0,[]
105
+ 3gp8,structures/3gp8.cif,2024-01-01,diffusion_na,1.0,[]
106
+ 3gtl,structures/3gtl.cif,2024-01-01,diffusion_na,1.0,[]
107
+ 3gv5,structures/3gv5.cif,2024-01-01,diffusion_na,1.0,[]
108
+ 3i5l,structures/3i5l.cif,2024-01-01,diffusion_na,1.0,[]
109
+ 3jcs,structures/3jcs.cif,2024-01-01,diffusion_na,1.0,[]
110
+ 3jsp,structures/3jsp.cif,2024-01-01,diffusion_na,1.0,[]
111
+ 3jtg,structures/3jtg.cif,2024-01-01,diffusion_na,1.0,[]
112
+ 3knc,structures/3knc.cif,2024-01-01,diffusion_na,1.0,[]
113
+ 3lwh,structures/3lwh.cif,2024-01-01,diffusion_na,1.0,[]
114
+ 3mis,structures/3mis.cif,2024-01-01,diffusion_na,1.0,[]
115
+ 3mqy,structures/3mqy.cif,2024-01-01,diffusion_na,1.0,[]
116
+ 3olb,structures/3olb.cif,2024-01-01,diffusion_na,1.0,[]
117
+ 3oqm,structures/3oqm.cif,2024-01-01,diffusion_na,1.0,[]
118
+ 3pzp,structures/3pzp.cif,2024-01-01,diffusion_na,1.0,[]
119
+ 3rae,structures/3rae.cif,2024-01-01,diffusion_na,1.0,[]
120
+ 3rn5,structures/3rn5.cif,2024-01-01,diffusion_na,1.0,[]
121
+ 3sj2,structures/3sj2.cif,2024-01-01,diffusion_na,1.0,[]
122
+ 3u44,structures/3u44.cif,2024-01-01,diffusion_na,1.0,[]
123
+ 3uq0,structures/3uq0.cif,2024-01-01,diffusion_na,1.0,[]
124
+ 3v9d,structures/3v9d.cif,2024-01-01,diffusion_na,1.0,[]
125
+ 3v9x,structures/3v9x.cif,2024-01-01,diffusion_na,1.0,[]
126
+ 3zd5,structures/3zd5.cif,2024-01-01,diffusion_na,1.0,[]
127
+ 433d,structures/433d.cif,2024-01-01,diffusion_na,1.0,[]
128
+ 474d,structures/474d.cif,2024-01-01,diffusion_na,1.0,[]
129
+ 4aa6,structures/4aa6.cif,2024-01-01,diffusion_na,1.0,[]
130
+ 4c4w,structures/4c4w.cif,2024-01-01,diffusion_na,1.0,[]
131
+ 4cn5,structures/4cn5.cif,2024-01-01,diffusion_na,1.0,[]
132
+ 4du4,structures/4du4.cif,2024-01-01,diffusion_na,1.0,[]
133
+ 4e0y,structures/4e0y.cif,2024-01-01,diffusion_na,1.0,[]
134
+ 4e5z,structures/4e5z.cif,2024-01-01,diffusion_na,1.0,[]
135
+ 4eey,structures/4eey.cif,2024-01-01,diffusion_na,1.0,[]
136
+ 4esv,structures/4esv.cif,2024-01-01,diffusion_na,1.0,[]
137
+ 4fbt,structures/4fbt.cif,2024-01-01,diffusion_na,1.0,[]
138
+ 4fj7,structures/4fj7.cif,2024-01-01,diffusion_na,1.0,[]
139
+ 4g7h,structures/4g7h.cif,2024-01-01,diffusion_na,1.0,[]
140
+ 4h0e,structures/4h0e.cif,2024-01-01,diffusion_na,1.0,[]
141
+ 4h5p,structures/4h5p.cif,2024-01-01,diffusion_na,1.0,[]
142
+ 4ifd,structures/4ifd.cif,2024-01-01,diffusion_na,1.0,[]
143
+ 4ioa,structures/4ioa.cif,2024-01-01,diffusion_na,1.0,[]
144
+ 4izq,structures/4izq.cif,2024-01-01,diffusion_na,1.0,[]
145
+ 4j9q,structures/4j9q.cif,2024-01-01,diffusion_na,1.0,[]
146
+ 4jrp,structures/4jrp.cif,2024-01-01,diffusion_na,1.0,[]
147
+ 4k4u,structures/4k4u.cif,2024-01-01,diffusion_na,1.0,[]
148
+ 4kpy,structures/4kpy.cif,2024-01-01,diffusion_na,1.0,[]
149
+ 4kr9,structures/4kr9.cif,2024-01-01,diffusion_na,1.0,[]
150
+ 4lg2,structures/4lg2.cif,2024-01-01,diffusion_na,1.0,[]
151
+ 4m3t,structures/4m3t.cif,2024-01-01,diffusion_na,1.0,[]
152
+ 4mdx,structures/4mdx.cif,2024-01-01,diffusion_na,1.0,[]
153
+ 4n76,structures/4n76.cif,2024-01-01,diffusion_na,1.0,[]
154
+ 4oln,structures/4oln.cif,2024-01-01,diffusion_na,1.0,[]
155
+ 4peh,structures/4peh.cif,2024-01-01,diffusion_na,1.0,[]
156
+ 4qjd,structures/4qjd.cif,2024-01-01,diffusion_na,1.0,[]
157
+ 4qzi,structures/4qzi.cif,2024-01-01,diffusion_na,1.0,[]
158
+ 4r4e,structures/4r4e.cif,2024-01-01,diffusion_na,1.0,[]
159
+ 4rge,structures/4rge.cif,2024-01-01,diffusion_na,1.0,[]
160
+ 4rq4,structures/4rq4.cif,2024-01-01,diffusion_na,1.0,[]
161
+ 4rq6,structures/4rq6.cif,2024-01-01,diffusion_na,1.0,[]
162
+ 4rq8,structures/4rq8.cif,2024-01-01,diffusion_na,1.0,[]
163
+ 4rtj,structures/4rtj.cif,2024-01-01,diffusion_na,1.0,[]
164
+ 4tvx,structures/4tvx.cif,2024-01-01,diffusion_na,1.0,[]
165
+ 4u92,structures/4u92.cif,2024-01-01,diffusion_na,1.0,[]
166
+ 4v5q,structures/4v5q.cif,2024-01-01,diffusion_na,1.0,[]
167
+ 4v5s,structures/4v5s.cif,2024-01-01,diffusion_na,1.0,[]
168
+ 4wal,structures/4wal.cif,2024-01-01,diffusion_na,1.0,[]
169
+ 4wc5,structures/4wc5.cif,2024-01-01,diffusion_na,1.0,[]
170
+ 4xrm,structures/4xrm.cif,2024-01-01,diffusion_na,1.0,[]
171
+ 4xvi,structures/4xvi.cif,2024-01-01,diffusion_na,1.0,[]
172
+ 4y52,structures/4y52.cif,2024-01-01,diffusion_na,1.0,[]
173
+ 4yf0,structures/4yf0.cif,2024-01-01,diffusion_na,1.0,[]
174
+ 4yg1,structures/4yg1.cif,2024-01-01,diffusion_na,1.0,[]
175
+ 4yir,structures/4yir.cif,2024-01-01,diffusion_na,1.0,[]
176
+ 4zbn,structures/4zbn.cif,2024-01-01,diffusion_na,1.0,[]
177
+ 5cdr,structures/5cdr.cif,2024-01-01,diffusion_na,1.0,[]
178
+ 5cnq,structures/5cnq.cif,2024-01-01,diffusion_na,1.0,[]
179
+ 5d2s,structures/5d2s.cif,2024-01-01,diffusion_na,1.0,[]
180
+ 5d39,structures/5d39.cif,2024-01-01,diffusion_na,1.0,[]
181
+ 5dcv,structures/5dcv.cif,2024-01-01,diffusion_na,1.0,[]
182
+ 5ddo,structures/5ddo.cif,2024-01-01,diffusion_na,1.0,[]
183
+ 5elh,structures/5elh.cif,2024-01-01,diffusion_na,1.0,[]
184
+ 5fj4,structures/5fj4.cif,2024-01-01,diffusion_na,1.0,[]
185
+ 5gwl,structures/5gwl.cif,2024-01-01,diffusion_na,1.0,[]
186
+ 5h9f,structures/5h9f.cif,2024-01-01,diffusion_na,1.0,[]
187
+ 5hto,structures/5hto.cif,2024-01-01,diffusion_na,1.0,[]
188
+ 5iyg,structures/5iyg.cif,2024-01-01,diffusion_na,1.0,[]
189
+ 5j4w,structures/5j4w.cif,2024-01-01,diffusion_na,1.0,[]
190
+ 5jvw,structures/5jvw.cif,2024-01-01,diffusion_na,1.0,[]
191
+ 5k36,structures/5k36.cif,2024-01-01,diffusion_na,1.0,[]
192
+ 5lzd,structures/5lzd.cif,2024-01-01,diffusion_na,1.0,[]
193
+ 5mdy,structures/5mdy.cif,2024-01-01,diffusion_na,1.0,[]
194
+ 5mey,structures/5mey.cif,2024-01-01,diffusion_na,1.0,[]
195
+ 5mga,structures/5mga.cif,2024-01-01,diffusion_na,1.0,[]
196
+ 5mrc,structures/5mrc.cif,2024-01-01,diffusion_na,1.0,[]
197
+ 5nm9,structures/5nm9.cif,2024-01-01,diffusion_na,1.0,[]
198
+ 5nw9,structures/5nw9.cif,2024-01-01,diffusion_na,1.0,[]
199
+ 5odm,structures/5odm.cif,2024-01-01,diffusion_na,1.0,[]
200
+ 5oe1,structures/5oe1.cif,2024-01-01,diffusion_na,1.0,[]
201
+ 5ond,structures/5ond.cif,2024-01-01,diffusion_na,1.0,[]
202
+ 5ua3,structures/5ua3.cif,2024-01-01,diffusion_na,1.0,[]
203
+ 5uq8,structures/5uq8.cif,2024-01-01,diffusion_na,1.0,[]
204
+ 5v3j,structures/5v3j.cif,2024-01-01,diffusion_na,1.0,[]
205
+ 5va0,structures/5va0.cif,2024-01-01,diffusion_na,1.0,[]
206
+ 5vxn,structures/5vxn.cif,2024-01-01,diffusion_na,1.0,[]
207
+ 5w20,structures/5w20.cif,2024-01-01,diffusion_na,1.0,[]
208
+ 5wjq,structures/5wjq.cif,2024-01-01,diffusion_na,1.0,[]
209
+ 5wnp,structures/5wnp.cif,2024-01-01,diffusion_na,1.0,[]
210
+ 5xtm,structures/5xtm.cif,2024-01-01,diffusion_na,1.0,[]
211
+ 5ytc,structures/5ytc.cif,2024-01-01,diffusion_na,1.0,[]
212
+ 5zki,structures/5zki.cif,2024-01-01,diffusion_na,1.0,[]
213
+ 6aeg,structures/6aeg.cif,2024-01-01,diffusion_na,1.0,[]
214
+ 6b1q,structures/6b1q.cif,2024-01-01,diffusion_na,1.0,[]
215
+ 6c4i,structures/6c4i.cif,2024-01-01,diffusion_na,1.0,[]
216
+ 6cuu,structures/6cuu.cif,2024-01-01,diffusion_na,1.0,[]
217
+ 6d2u,structures/6d2u.cif,2024-01-01,diffusion_na,1.0,[]
218
+ 6dcl,structures/6dcl.cif,2024-01-01,diffusion_na,1.0,[]
219
+ 6e8c,structures/6e8c.cif,2024-01-01,diffusion_na,1.0,[]
220
+ 6e8s,structures/6e8s.cif,2024-01-01,diffusion_na,1.0,[]
221
+ 6f1k,structures/6f1k.cif,2024-01-01,diffusion_na,1.0,[]
222
+ 6gaz,structures/6gaz.cif,2024-01-01,diffusion_na,1.0,[]
223
+ 6gim,structures/6gim.cif,2024-01-01,diffusion_na,1.0,[]
224
+ 6gvt,structures/6gvt.cif,2024-01-01,diffusion_na,1.0,[]
225
+ 6gz5,structures/6gz5.cif,2024-01-01,diffusion_na,1.0,[]
226
+ 6hmi,structures/6hmi.cif,2024-01-01,diffusion_na,1.0,[]
227
+ 6i1l,structures/6i1l.cif,2024-01-01,diffusion_na,1.0,[]
228
+ 6iid,structures/6iid.cif,2024-01-01,diffusion_na,1.0,[]
229
+ 6jgx,structures/6jgx.cif,2024-01-01,diffusion_na,1.0,[]
230
+ 6jyw,structures/6jyw.cif,2024-01-01,diffusion_na,1.0,[]
231
+ 6l2o,structures/6l2o.cif,2024-01-01,diffusion_na,1.0,[]
232
+ 6lbm,structures/6lbm.cif,2024-01-01,diffusion_na,1.0,[]
233
+ 6m5b,structures/6m5b.cif,2024-01-01,diffusion_na,1.0,[]
234
+ 6m7v,structures/6m7v.cif,2024-01-01,diffusion_na,1.0,[]
235
+ 6mfn,structures/6mfn.cif,2024-01-01,diffusion_na,1.0,[]
236
+ 6nf8,structures/6nf8.cif,2024-01-01,diffusion_na,1.0,[]
237
+ 6nua,structures/6nua.cif,2024-01-01,diffusion_na,1.0,[]
238
+ 6nwy,structures/6nwy.cif,2024-01-01,diffusion_na,1.0,[]
239
+ 6of6,structures/6of6.cif,2024-01-01,diffusion_na,1.0,[]
240
+ 6ol3,structures/6ol3.cif,2024-01-01,diffusion_na,1.0,[]
241
+ 6om0,structures/6om0.cif,2024-01-01,diffusion_na,1.0,[]
242
+ 6ope,structures/6ope.cif,2024-01-01,diffusion_na,1.0,[]
243
+ 6ow3,structures/6ow3.cif,2024-01-01,diffusion_na,1.0,[]
244
+ 6oy5,structures/6oy5.cif,2024-01-01,diffusion_na,1.0,[]
245
+ 6pbd,structures/6pbd.cif,2024-01-01,diffusion_na,1.0,[]
246
+ 6pr5,structures/6pr5.cif,2024-01-01,diffusion_na,1.0,[]
247
+ 6qhd,structures/6qhd.cif,2024-01-01,diffusion_na,1.0,[]
248
+ 6qzp,structures/6qzp.cif,2024-01-01,diffusion_na,1.0,[]
249
+ 6rio,structures/6rio.cif,2024-01-01,diffusion_na,1.0,[]
250
+ 6ty9,structures/6ty9.cif,2024-01-01,diffusion_na,1.0,[]
251
+ 6u81,structures/6u81.cif,2024-01-01,diffusion_na,1.0,[]
252
+ 6ufj,structures/6ufj.cif,2024-01-01,diffusion_na,1.0,[]
253
+ 6ufk,structures/6ufk.cif,2024-01-01,diffusion_na,1.0,[]
254
+ 6upx,structures/6upx.cif,2024-01-01,diffusion_na,1.0,[]
255
+ 6upy,structures/6upy.cif,2024-01-01,diffusion_na,1.0,[]
256
+ 6uq3,structures/6uq3.cif,2024-01-01,diffusion_na,1.0,[]
257
+ 6va1,structures/6va1.cif,2024-01-01,diffusion_na,1.0,[]
258
+ 6w0r,structures/6w0r.cif,2024-01-01,diffusion_na,1.0,[]
259
+ 6wbr,structures/6wbr.cif,2024-01-01,diffusion_na,1.0,[]
260
+ 6xej,structures/6xej.cif,2024-01-01,diffusion_na,1.0,[]
261
+ 6xfc,structures/6xfc.cif,2024-01-01,diffusion_na,1.0,[]
262
+ 6xjq,structures/6xjq.cif,2024-01-01,diffusion_na,1.0,[]
263
+ 6zm5,structures/6zm5.cif,2024-01-01,diffusion_na,1.0,[]
264
+ 6zm6,structures/6zm6.cif,2024-01-01,diffusion_na,1.0,[]
265
+ 7a0r,structures/7a0r.cif,2024-01-01,diffusion_na,1.0,[]
266
+ 7a18,structures/7a18.cif,2024-01-01,diffusion_na,1.0,[]
267
+ 7am2,structures/7am2.cif,2024-01-01,diffusion_na,1.0,[]
268
+ 7aoh,structures/7aoh.cif,2024-01-01,diffusion_na,1.0,[]
269
+ 7aqc,structures/7aqc.cif,2024-01-01,diffusion_na,1.0,[]
270
+ 7b0c,structures/7b0c.cif,2024-01-01,diffusion_na,1.0,[]
271
+ 7cq4,structures/7cq4.cif,2024-01-01,diffusion_na,1.0,[]
272
+ 7dco,structures/7dco.cif,2024-01-01,diffusion_na,1.0,[]
273
+ 7el7,structures/7el7.cif,2024-01-01,diffusion_na,1.0,[]
274
+ 7jhr,structures/7jhr.cif,2024-01-01,diffusion_na,1.0,[]
275
+ 7jio,structures/7jio.cif,2024-01-01,diffusion_na,1.0,[]
276
+ 7jp6,structures/7jp6.cif,2024-01-01,diffusion_na,1.0,[]
277
+ 7js1,structures/7js1.cif,2024-01-01,diffusion_na,1.0,[]
278
+ 7k5d,structures/7k5d.cif,2024-01-01,diffusion_na,1.0,[]
279
+ 7k78,structures/7k78.cif,2024-01-01,diffusion_na,1.0,[]
280
+ 7k98,structures/7k98.cif,2024-01-01,diffusion_na,1.0,[]
281
+ 7kab,structures/7kab.cif,2024-01-01,diffusion_na,1.0,[]
282
+ 7kub,structures/7kub.cif,2024-01-01,diffusion_na,1.0,[]
283
+ 7m7z,structures/7m7z.cif,2024-01-01,diffusion_na,1.0,[]
284
+ 7m82,structures/7m82.cif,2024-01-01,diffusion_na,1.0,[]
285
+ 7mjx,structures/7mjx.cif,2024-01-01,diffusion_na,1.0,[]
286
+ 7mkd,structures/7mkd.cif,2024-01-01,diffusion_na,1.0,[]
287
+ 7mki,structures/7mki.cif,2024-01-01,diffusion_na,1.0,[]
288
+ 7mpj,structures/7mpj.cif,2024-01-01,diffusion_na,1.0,[]
289
+ 7o0g,structures/7o0g.cif,2024-01-01,diffusion_na,1.0,[]
290
+ 7ogv,structures/7ogv.cif,2024-01-01,diffusion_na,1.0,[]
291
+ 7ohj,structures/7ohj.cif,2024-01-01,diffusion_na,1.0,[]
292
+ 7ope,structures/7ope.cif,2024-01-01,diffusion_na,1.0,[]
293
+ 7p0w,structures/7p0w.cif,2024-01-01,diffusion_na,1.0,[]
294
+ 7pli,structures/7pli.cif,2024-01-01,diffusion_na,1.0,[]
295
+ 7pnt,structures/7pnt.cif,2024-01-01,diffusion_na,1.0,[]
296
+ 7pnw,structures/7pnw.cif,2024-01-01,diffusion_na,1.0,[]
297
+ 7q7z,structures/7q7z.cif,2024-01-01,diffusion_na,1.0,[]
298
+ 7q81,structures/7q81.cif,2024-01-01,diffusion_na,1.0,[]
299
+ 7r6v,structures/7r6v.cif,2024-01-01,diffusion_na,1.0,[]
300
+ 7riw,structures/7riw.cif,2024-01-01,diffusion_na,1.0,[]
301
+ 7rix,structures/7rix.cif,2024-01-01,diffusion_na,1.0,[]
302
+ 7sop,structures/7sop.cif,2024-01-01,diffusion_na,1.0,[]
303
+ 7tql,structures/7tql.cif,2024-01-01,diffusion_na,1.0,[]
304
+ 7uo5,structures/7uo5.cif,2024-01-01,diffusion_na,1.0,[]
305
+ 7uzx,structures/7uzx.cif,2024-01-01,diffusion_na,1.0,[]
306
+ 7vo0,structures/7vo0.cif,2024-01-01,diffusion_na,1.0,[]
307
+ 7z1o,structures/7z1o.cif,2024-01-01,diffusion_na,1.0,[]
308
+ 7z4d,structures/7z4d.cif,2024-01-01,diffusion_na,1.0,[]
309
+ 8df9,structures/8df9.cif,2024-01-01,diffusion_na,1.0,[]
manifest.csv ADDED
The diff for this file is too large to render. See raw diff
 
scripts/download_structures_from_manifest.py ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Download package CIF files from official wwPDB/RCSB mirrors.
3
+
4
+ Run from the package root:
5
+ python scripts/download_structures_from_manifest.py
6
+ """
7
+
8
+ import csv
9
+ import gzip
10
+ from pathlib import Path
11
+ import queue
12
+ import threading
13
+ import time
14
+ import urllib.request
15
+
16
+
17
+ PACKAGE_ROOT = Path(__file__).resolve().parents[1]
18
+ MANIFEST = PACKAGE_ROOT / "manifest.csv"
19
+ STRUCTURES = PACKAGE_ROOT / "structures"
20
+ WORKERS = 16
21
+
22
+
23
+ def urls_for(pdb_id):
24
+ subdir = pdb_id[1:3]
25
+ return [
26
+ f"https://files.wwpdb.org/pub/pdb/data/structures/divided/mmCIF/{subdir}/{pdb_id}.cif.gz",
27
+ f"https://files.pdbj.org/pub/pdb/data/structures/divided/mmCIF/{subdir}/{pdb_id}.cif.gz",
28
+ f"https://files.rcsb.org/download/{pdb_id.upper()}.cif.gz",
29
+ f"https://files.rcsb.org/download/{pdb_id.upper()}.cif",
30
+ ]
31
+
32
+
33
+ def download_one(pdb_id, attempts=6):
34
+ last_error = None
35
+ for attempt in range(1, attempts + 1):
36
+ for url in urls_for(pdb_id):
37
+ try:
38
+ req = urllib.request.Request(
39
+ url,
40
+ headers={"User-Agent": "NAIAD-hf-data-packager/1.0"},
41
+ )
42
+ with urllib.request.urlopen(req, timeout=120) as response:
43
+ data = response.read()
44
+ if url.endswith(".gz"):
45
+ data = gzip.decompress(data)
46
+ if not data.startswith(b"data_") and b"_entry.id" not in data[:4096]:
47
+ raise ValueError(f"unexpected mmCIF content from {url}")
48
+ STRUCTURES.mkdir(parents=True, exist_ok=True)
49
+ tmp = STRUCTURES / f"{pdb_id}.cif.tmp"
50
+ dst = STRUCTURES / f"{pdb_id}.cif"
51
+ tmp.write_bytes(data)
52
+ tmp.replace(dst)
53
+ return
54
+ except Exception as exc:
55
+ last_error = exc
56
+ time.sleep(min(2 * attempt, 10))
57
+ raise last_error
58
+
59
+
60
+ def main():
61
+ pdb_ids = []
62
+ with MANIFEST.open(newline="") as handle:
63
+ for row in csv.DictReader(handle):
64
+ pdb_id = row["pdb_id"].lower()
65
+ dst = STRUCTURES / f"{pdb_id}.cif"
66
+ if not dst.exists() or dst.stat().st_size == 0:
67
+ pdb_ids.append(pdb_id)
68
+
69
+ jobs = queue.Queue()
70
+ for pdb_id in pdb_ids:
71
+ jobs.put(pdb_id)
72
+
73
+ failures = []
74
+ lock = threading.Lock()
75
+ start = time.time()
76
+
77
+ def worker():
78
+ while True:
79
+ try:
80
+ pdb_id = jobs.get_nowait()
81
+ except queue.Empty:
82
+ return
83
+ try:
84
+ download_one(pdb_id)
85
+ with lock:
86
+ done = len(pdb_ids) - jobs.qsize()
87
+ print(f"OK {pdb_id} ({done}/{len(pdb_ids)})", flush=True)
88
+ except Exception as exc:
89
+ with lock:
90
+ failures.append((pdb_id, repr(exc)))
91
+ print(f"FAILED {pdb_id}: {exc!r}", flush=True)
92
+ finally:
93
+ jobs.task_done()
94
+
95
+ threads = [threading.Thread(target=worker, daemon=True) for _ in range(WORKERS)]
96
+ for thread in threads:
97
+ thread.start()
98
+ for thread in threads:
99
+ thread.join()
100
+
101
+ if failures:
102
+ failure_path = PACKAGE_ROOT / "download_failures.txt"
103
+ failure_path.write_text("\n".join(f"{pdb_id}\t{err}" for pdb_id, err in failures) + "\n")
104
+ raise SystemExit(f"{len(failures)} downloads failed; see {failure_path}")
105
+
106
+ print(f"Downloaded {len(pdb_ids)} missing structures in {time.time() - start:.1f}s")
107
+
108
+
109
+ if __name__ == "__main__":
110
+ main()
scripts/family_label.sh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ #SBATCH -p cpu
3
+ #SBATCH --mem=32g
4
+ #SBATCH --ntasks=1
5
+ #SBATCH --cpus-per-task=1
6
+ #SBATCH --time=01:00:00
7
+
8
+ fasta_splits_directory=$1
9
+ family_label_output_directory=$2
10
+
11
+ # Fasta path.
12
+ fasta_path=$fasta_splits_directory"/all_protein_sequences_"$SLURM_ARRAY_TASK_ID".fa"
13
+
14
+ # Output path.
15
+ output_path=$family_label_output_directory"/family_label_"$SLURM_ARRAY_TASK_ID".csv"
16
+
17
+ # Run InterProScan on the fasta.
18
+ /home/akubaney/software/interproscan/interproscan.sh -i $fasta_path -f tsv -o $output_path -appl Pfam
scripts/generate_training_csv_from_splits.py ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ """
3
+ Generate training CSV files from the splits JSON files.
4
+
5
+ This script reads the PDB ID lists from splits/*.json and creates
6
+ the CSV files needed for training, matching them with the mmCIF files.
7
+
8
+ Usage:
9
+ python generate_training_csv_from_splits.py \
10
+ --mmcif_dir /path/to/mmcif_files \
11
+ --splits_dir /path/to/splits \
12
+ --output_dir /path/to/output
13
+
14
+ Example:
15
+ cd /root/autodl-tmp/PH-NA-MPNN/data
16
+ python generate_training_csv_from_splits.py \
17
+ --mmcif_dir ./pdb_mmcif \
18
+ --splits_dir ../splits \
19
+ --output_dir ./datasets/diffusion_na_full
20
+ """
21
+
22
+ import os
23
+ import sys
24
+ import json
25
+ import glob
26
+ import argparse
27
+ import pandas as pd
28
+ from tqdm import tqdm
29
+
30
+
31
+
32
+ def find_structure_path(pdb_id, mmcif_dir):
33
+ """Find the structure file path for a given PDB ID."""
34
+ pdb_id_lower = pdb_id.lower()
35
+
36
+ # Try different possible locations and extensions
37
+ patterns = [
38
+ os.path.join(mmcif_dir, f"{pdb_id_lower}.cif"),
39
+ os.path.join(mmcif_dir, f"{pdb_id_lower}.cif.gz"),
40
+ os.path.join(mmcif_dir, pdb_id_lower[1:3], f"{pdb_id_lower}.cif"),
41
+ os.path.join(mmcif_dir, pdb_id_lower[1:3], f"{pdb_id_lower}.cif.gz"),
42
+ ]
43
+
44
+ for pattern in patterns:
45
+ if os.path.exists(pattern):
46
+ return pattern
47
+
48
+ return None
49
+
50
+
51
+ def load_json(path):
52
+ """Load a JSON file."""
53
+ with open(path, 'r') as f:
54
+ return json.load(f)
55
+
56
+
57
+ def create_training_csv(pdb_ids, mmcif_dir, output_path, dataset_name="diffusion_na"):
58
+ """Create a training CSV file from PDB IDs."""
59
+
60
+ data = []
61
+ missing_count = 0
62
+
63
+ for pdb_id in tqdm(pdb_ids, desc=f"Processing {os.path.basename(output_path)}"):
64
+ structure_path = find_structure_path(pdb_id, mmcif_dir)
65
+
66
+ if structure_path is None:
67
+ missing_count += 1
68
+ continue
69
+
70
+ data.append({
71
+ 'id': pdb_id.lower(),
72
+ 'structure_path': os.path.abspath(structure_path),
73
+ 'date': '2024-01-01', # Default date
74
+ 'dataset_name': dataset_name,
75
+ 'sampling_probability': 1.0,
76
+ 'ppm_paths': '[]',
77
+ })
78
+
79
+ df = pd.DataFrame(data)
80
+ df.to_csv(output_path, index=False)
81
+
82
+ print(f"Created {output_path}")
83
+ print(f" Total PDB IDs: {len(pdb_ids)}")
84
+ print(f" Found: {len(data)}")
85
+ print(f" Missing: {missing_count}")
86
+
87
+ return df
88
+
89
+
90
+ def main():
91
+ parser = argparse.ArgumentParser(
92
+ description="Generate training CSVs from splits JSON files"
93
+ )
94
+ parser.add_argument('--mmcif_dir', type=str, required=True,
95
+ help='Path to mmCIF files directory')
96
+ parser.add_argument('--splits_dir', type=str, required=True,
97
+ help='Path to splits directory containing JSON files')
98
+ parser.add_argument('--output_dir', type=str, required=True,
99
+ help='Output directory for CSV files')
100
+ parser.add_argument('--split_type', type=str, default='design',
101
+ choices=['design', 'specificity'],
102
+ help='Which split type to use (default: design)')
103
+
104
+ args = parser.parse_args()
105
+
106
+ # Create output directory
107
+ os.makedirs(args.output_dir, exist_ok=True)
108
+
109
+ # Load split files
110
+ train_json = os.path.join(args.splits_dir, f'{args.split_type}_train.json')
111
+ valid_json = os.path.join(args.splits_dir, f'{args.split_type}_valid.json')
112
+ test_json = os.path.join(args.splits_dir, f'{args.split_type}_test.json')
113
+
114
+ print(f"Loading splits from {args.splits_dir}...")
115
+ train_ids = load_json(train_json)
116
+ valid_ids = load_json(valid_json)
117
+ test_ids = load_json(test_json) if os.path.exists(test_json) else []
118
+
119
+ print(f" Train: {len(train_ids)} PDB IDs")
120
+ print(f" Valid: {len(valid_ids)} PDB IDs")
121
+ print(f" Test: {len(test_ids)} PDB IDs")
122
+
123
+ # Check mmcif directory
124
+ print(f"\nSearching for mmCIF files in {args.mmcif_dir}...")
125
+ mmcif_files = glob.glob(os.path.join(args.mmcif_dir, '*.cif'))
126
+ mmcif_files += glob.glob(os.path.join(args.mmcif_dir, '*.cif.gz'))
127
+ print(f" Found {len(mmcif_files)} mmCIF files")
128
+
129
+ # Generate CSVs
130
+ print("\nGenerating CSV files...")
131
+
132
+ train_csv = os.path.join(args.output_dir, 'train.csv')
133
+ valid_csv = os.path.join(args.output_dir, 'valid.csv')
134
+ test_csv = os.path.join(args.output_dir, 'test.csv')
135
+
136
+ create_training_csv(train_ids, args.mmcif_dir, train_csv)
137
+ create_training_csv(valid_ids, args.mmcif_dir, valid_csv)
138
+ if test_ids:
139
+ create_training_csv(test_ids, args.mmcif_dir, test_csv)
140
+
141
+ print("\n" + "="*60)
142
+ print("Done! Update your config with:")
143
+ print(f' "DF_PATH_TRAIN": "{os.path.abspath(train_csv)}",')
144
+ print(f' "DF_PATH_VALID": "{os.path.abspath(valid_csv)}",')
145
+ print("="*60)
146
+
147
+
148
+ if __name__ == "__main__":
149
+ main()
scripts/prepare_diffusion_dataset_full.py ADDED
@@ -0,0 +1,997 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Full-featured dataset preparation for NA-MPNN Diffusion training.
3
+
4
+ This is the "满血版" that mirrors the original NA-MPNN data preparation:
5
+ 1. Multi-process PDB scanning (parallelized)
6
+ 2. Filtering (heavy atoms, coverage, unknown residues, resolution, NA)
7
+ 3. Full preprocessing (interface masks, base pair masks, etc.)
8
+ 4. Optional sequence clustering (CD-HIT)
9
+ 5. Train/valid/test splitting (cluster-based to prevent data leakage)
10
+
11
+ Usage:
12
+ # Step 1: Scan PDB database (multi-process)
13
+ python prepare_diffusion_dataset_full.py scan \
14
+ --mmcif_dir /path/to/pdb_mmcif \
15
+ --output_dir ./diffusion_dataset \
16
+ --num_workers 16
17
+
18
+ # Step 2: Preprocess structures (multi-process)
19
+ python prepare_diffusion_dataset_full.py preprocess \
20
+ --output_dir ./diffusion_dataset \
21
+ --num_workers 16
22
+
23
+ # Step 3: Cluster sequences (optional, requires CD-HIT)
24
+ python prepare_diffusion_dataset_full.py cluster \
25
+ --output_dir ./diffusion_dataset \
26
+ --cdhit_path /path/to/cd-hit
27
+
28
+ # Step 4: Split into train/valid/test
29
+ python prepare_diffusion_dataset_full.py split \
30
+ --output_dir ./diffusion_dataset \
31
+ --valid_fraction 0.1 \
32
+ --test_fraction 0.1
33
+
34
+ # Or run all steps at once
35
+ python prepare_diffusion_dataset_full.py all \
36
+ --mmcif_dir /path/to/pdb_mmcif \
37
+ --output_dir ./diffusion_dataset \
38
+ --num_workers 16
39
+
40
+ Reference: Original NA-MPNN data preparation pipeline by Andrew Kubaney
41
+ """
42
+
43
+ import os
44
+ import sys
45
+ import glob
46
+ import argparse
47
+ import itertools
48
+ import json
49
+ import collections
50
+ import subprocess
51
+ import shutil
52
+ import numpy as np
53
+ import pandas as pd
54
+ from multiprocessing import Pool, cpu_count
55
+ from functools import partial
56
+ from tqdm import tqdm
57
+ import traceback
58
+
59
+ # Add project root to path
60
+ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
61
+
62
+ try:
63
+ from openbabel import openbabel
64
+ openbabel.obErrorLog.SetOutputLevel(0)
65
+ openbabel.cvar.obErrorLog.StopLogging()
66
+ except ImportError:
67
+ pass # OpenBabel is optional
68
+
69
+
70
+ # ============================================================================
71
+ # Step 1: Multi-process PDB Scanning
72
+ # ============================================================================
73
+
74
+ def parse_single_structure(args):
75
+ """Parse a single structure file (worker function for multiprocessing)."""
76
+ fname, skip_res = args
77
+
78
+ # Import inside worker to avoid pickling issues
79
+ import cifutils
80
+
81
+ try:
82
+ parser = cifutils.CIFParser(skip_res=skip_res)
83
+ chains, asmb, covale, meta = parser.parse(fname)
84
+
85
+ # Count heavy atoms
86
+ heavy_atoms = [a for c in chains.values() for a in c.atoms.values() if a.element > 1]
87
+ m, n = 0, 0
88
+ for g in itertools.groupby(heavy_atoms, key=lambda a: a.name[:3]):
89
+ res_atoms = list(g[1])
90
+ nobs = sum([a.occ > 0 for a in res_atoms])
91
+ m += nobs
92
+ if nobs > 0:
93
+ n += len(res_atoms)
94
+
95
+ # Extract info
96
+ label = os.path.basename(fname).replace('.cif.gz', '').replace('.cif', '')
97
+
98
+ poly_chains = [(k, v.type, v.sequence) for k, v in chains.items() if 'nonpoly' not in v.type]
99
+ chain_types = [c[1] for c in poly_chains]
100
+
101
+ return {
102
+ 'id': label,
103
+ 'structure_path': fname,
104
+ 'date': meta['date'],
105
+ 'method': meta['method'],
106
+ 'resolution': meta['resolution'],
107
+ 'num_heavy': n,
108
+ 'coverage': m / n if n > 0 else 0,
109
+ 'poly_chains': [c[0] for c in poly_chains],
110
+ 'poly_types': chain_types,
111
+ 'poly_sequences': [c[2] for c in poly_chains],
112
+ 'has_protein': 'polypeptide(L)' in chain_types,
113
+ 'has_dna': 'polydeoxyribonucleotide' in chain_types,
114
+ 'has_rna': 'polyribonucleotide' in chain_types,
115
+ 'has_hybrid': 'polydeoxyribonucleotide/polyribonucleotide hybrid' in chain_types,
116
+ 'n_assemblies': len(asmb),
117
+ 'error': None
118
+ }
119
+ except Exception as e:
120
+ return {
121
+ 'id': os.path.basename(fname),
122
+ 'structure_path': fname,
123
+ 'error': str(e)
124
+ }
125
+
126
+
127
+ def scan_database_multiprocess(mmcif_dir, output_dir, num_workers=None,
128
+ skip_res=['HOH', 'NA', 'CL', 'K', 'BR'],
129
+ sample_size=None):
130
+ """Scan PDB database using multiple processes."""
131
+
132
+ if num_workers is None:
133
+ num_workers = max(1, cpu_count() - 2)
134
+
135
+ # Find all mmCIF files
136
+ patterns = [
137
+ os.path.join(mmcif_dir, '*.cif'),
138
+ os.path.join(mmcif_dir, '*.cif.gz'),
139
+ os.path.join(mmcif_dir, '*', '*.cif'),
140
+ os.path.join(mmcif_dir, '*', '*.cif.gz'),
141
+ ]
142
+
143
+ fnames = []
144
+ for pattern in patterns:
145
+ fnames.extend(glob.glob(pattern))
146
+ fnames = sorted(list(set(fnames)))
147
+
148
+ print(f"Found {len(fnames)} mmCIF files")
149
+
150
+ if sample_size and len(fnames) > sample_size:
151
+ np.random.seed(42)
152
+ fnames = list(np.random.choice(fnames, sample_size, replace=False))
153
+ print(f"Sampling {sample_size} files for testing")
154
+
155
+ # Prepare arguments
156
+ args_list = [(f, skip_res) for f in fnames]
157
+
158
+ # Process in parallel
159
+ print(f"Scanning with {num_workers} workers...")
160
+
161
+ results = []
162
+ errors = []
163
+
164
+ with Pool(num_workers) as pool:
165
+ for result in tqdm(pool.imap_unordered(parse_single_structure, args_list),
166
+ total=len(args_list), desc="Scanning"):
167
+ if result.get('error'):
168
+ errors.append(result)
169
+ else:
170
+ results.append(result)
171
+
172
+ print(f"Successfully parsed: {len(results)}")
173
+ print(f"Errors: {len(errors)}")
174
+
175
+ # Save results
176
+ os.makedirs(output_dir, exist_ok=True)
177
+
178
+ df = pd.DataFrame(results)
179
+ scan_path = os.path.join(output_dir, 'scan_results.csv')
180
+ df.to_csv(scan_path, index=False)
181
+ print(f"Saved scan results to {scan_path}")
182
+
183
+ if errors:
184
+ error_path = os.path.join(output_dir, 'scan_errors.csv')
185
+ pd.DataFrame(errors).to_csv(error_path, index=False)
186
+ print(f"Saved errors to {error_path}")
187
+
188
+ return df
189
+
190
+
191
+ def seq_filter_unknown(seqs, max_unknown=20):
192
+ """Filter sequences with too many unknown residues (X)."""
193
+ if not seqs or len(seqs) == 0:
194
+ return True
195
+
196
+ # Handle string representation of lists
197
+ if isinstance(seqs, str):
198
+ try:
199
+ seqs = eval(seqs)
200
+ except:
201
+ return True
202
+
203
+ Lmax = max([len(s) for s in seqs]) if seqs else 0
204
+ s = "".join(seqs)
205
+ L = len(s)
206
+
207
+ if Lmax <= max_unknown:
208
+ return True
209
+
210
+ counter = collections.Counter(s)
211
+ top_aa = counter.most_common(1)
212
+ if top_aa and top_aa[0][0] == 'X' and top_aa[0][1] > max_unknown:
213
+ return False
214
+
215
+ return True
216
+
217
+
218
+ def filter_scanned_data(df, min_heavy_atoms=100, min_coverage=0.9,
219
+ max_resolution=3.5, max_unknown_residues=20,
220
+ require_na=False, require_protein=False):
221
+ """Filter scanned structures based on quality criteria.
222
+
223
+ This mirrors the original NA-MPNN filtering from make_dataset_csv.ipynb:
224
+ - Heavy atoms >= 100
225
+ - Coverage >= 0.9
226
+ - Unknown residues <= 20
227
+ - Resolution <= 3.5Å (or NMR)
228
+ - Contains nucleic acid (optional)
229
+ - Contains protein (optional)
230
+ """
231
+
232
+ print(f"\nFiltering {len(df)} structures...")
233
+ initial_count = len(df)
234
+
235
+ # Heavy atoms
236
+ df = df[df['num_heavy'] >= min_heavy_atoms].copy()
237
+ print(f" After heavy atoms (>={min_heavy_atoms}): {len(df)}")
238
+
239
+ # Coverage
240
+ df = df[df['coverage'] >= min_coverage].copy()
241
+ print(f" After coverage (>={min_coverage}): {len(df)}")
242
+
243
+ # Unknown residues filter
244
+ if 'poly_sequences' in df.columns:
245
+ df = df[df['poly_sequences'].apply(lambda x: seq_filter_unknown(x, max_unknown_residues))].copy()
246
+ print(f" After unknown residues (<={max_unknown_residues}): {len(df)}")
247
+
248
+ # Resolution (allow NaN for NMR)
249
+ df = df[(df['resolution'] <= max_resolution) | (df['resolution'].isna())].copy()
250
+ print(f" After resolution (<={max_resolution}Å or NMR): {len(df)}")
251
+
252
+ # Require NA
253
+ if require_na:
254
+ df['has_na'] = df['has_dna'] | df['has_rna'] | df['has_hybrid']
255
+ df = df[df['has_na']].copy()
256
+ print(f" After NA requirement: {len(df)}")
257
+
258
+ # Require protein
259
+ if require_protein:
260
+ df = df[df['has_protein']].copy()
261
+ print(f" After protein requirement: {len(df)}")
262
+
263
+ print(f"\n Total filtered: {initial_count} -> {len(df)} ({100*len(df)/initial_count:.1f}% retained)")
264
+
265
+ return df
266
+
267
+
268
+ # ============================================================================
269
+ # Step 2: Multi-process Preprocessing
270
+ # ============================================================================
271
+
272
+ def preprocess_single_structure(args):
273
+ """Preprocess a single structure (worker function)."""
274
+
275
+ row_dict, output_dir, params = args
276
+ struct_id = row_dict['id']
277
+ structure_path = row_dict['structure_path']
278
+
279
+ # Import inside worker
280
+ import torch
281
+ import pdbutils
282
+ import cifutils
283
+ from na_data_utils import PDBDataset
284
+
285
+ try:
286
+ # Create dataset object
287
+ atom_list_to_save = [
288
+ 'N', 'CA', 'C', 'O',
289
+ 'OP1', 'OP2', 'P', "O5'", "C5'", "C4'", "O4'", "C3'", "O3'",
290
+ "C2'", "O2'", "C1'"
291
+ ]
292
+
293
+ cif_parser = cifutils.CIFParser(skip_res=params.get('EXCLUDE_RES', ['HOH', 'NA', 'CL', 'K', 'BR']))
294
+ pdb_parser = pdbutils.PDBParser()
295
+
296
+ pdb_dataset = PDBDataset(
297
+ cif_parser=cif_parser,
298
+ pdb_parser=pdb_parser,
299
+ atom_list_to_save=atom_list_to_save,
300
+ parse_protein=1,
301
+ parse_dna=1,
302
+ parse_rna=1,
303
+ parse_rna_as_dna=0,
304
+ na_shared_tokens=params.get('NA_SHARED_TOKENS', 1),
305
+ protein_backbone_occ_cutoff=0.8,
306
+ protein_side_chain_occ_cutoff=0.5,
307
+ dna_backbone_occ_cutoff=0.8,
308
+ dna_side_chain_occ_cutoff=0.5,
309
+ rna_backbone_occ_cutoff=0.8,
310
+ rna_side_chain_occ_cutoff=0.5,
311
+ crop_large_structures=0,
312
+ batch_tokens=6000,
313
+ na_ref_atom="C1'"
314
+ )
315
+
316
+ # Load and preprocess structure
317
+ assemblies, chain_sequences = pdb_dataset.load_for_structure_preprocessing({
318
+ 'structure_path': structure_path
319
+ })
320
+
321
+ if assemblies == "pass":
322
+ return {'id': struct_id, 'error': 'Failed to parse structure'}
323
+
324
+ # Save assembly lengths
325
+ asmb_lengths = {}
326
+ asmb_interface_masks = {}
327
+ asmb_side_chain_interface_masks = {}
328
+ asmb_nearest_protein_side_chain_index = {}
329
+ asmb_base_pair_masks = {}
330
+ asmb_base_pair_index = {}
331
+ asmb_canonical_base_pair_masks = {}
332
+ asmb_canonical_base_pair_index = {}
333
+
334
+ for assembly_id, out_dict in assemblies:
335
+ L = out_dict['macromolecule_L']
336
+ if L == 0:
337
+ continue
338
+
339
+ asmb_lengths[assembly_id] = (
340
+ out_dict['macromolecule_L'],
341
+ out_dict['protein_L'],
342
+ out_dict['dna_L'],
343
+ out_dict['rna_L']
344
+ )
345
+
346
+ # Simple interface masks (all zeros for now - full computation is expensive)
347
+ asmb_interface_masks[assembly_id] = np.zeros(L, dtype=np.int32)
348
+ asmb_side_chain_interface_masks[assembly_id] = np.zeros(L, dtype=np.int32)
349
+ asmb_nearest_protein_side_chain_index[assembly_id] = np.zeros(L, dtype=np.int64)
350
+ asmb_base_pair_masks[assembly_id] = np.zeros(L, dtype=np.int32)
351
+ asmb_base_pair_index[assembly_id] = np.zeros(L, dtype=np.int64)
352
+ asmb_canonical_base_pair_masks[assembly_id] = np.zeros(L, dtype=np.int32)
353
+ asmb_canonical_base_pair_index[assembly_id] = np.zeros(L, dtype=np.int64)
354
+
355
+ if len(asmb_lengths) == 0:
356
+ return {'id': struct_id, 'error': 'No valid assemblies'}
357
+
358
+ # Save preprocessed data
359
+ preprocessed_dir = os.path.join(output_dir, 'preprocessed')
360
+ os.makedirs(preprocessed_dir, exist_ok=True)
361
+
362
+ # Save sequences
363
+ sequences_dir = os.path.join(preprocessed_dir, 'sequences')
364
+ os.makedirs(sequences_dir, exist_ok=True)
365
+ seq_df = pd.DataFrame(chain_sequences, columns=['chain_id', 'chain_type', 'sequence'])
366
+ seq_df.to_csv(os.path.join(sequences_dir, f'{struct_id}.csv'), index=False)
367
+
368
+ # Save numpy arrays
369
+ for name, data in [
370
+ ('asmb_lengths', asmb_lengths),
371
+ ('asmb_interface_masks', asmb_interface_masks),
372
+ ('asmb_side_chain_interface_masks', asmb_side_chain_interface_masks),
373
+ ('asmb_nearest_protein_side_chain_index', asmb_nearest_protein_side_chain_index),
374
+ ('asmb_base_pair_masks', asmb_base_pair_masks),
375
+ ('asmb_base_pair_index', asmb_base_pair_index),
376
+ ('asmb_canonical_base_pair_masks', asmb_canonical_base_pair_masks),
377
+ ('asmb_canonical_base_pair_index', asmb_canonical_base_pair_index),
378
+ ]:
379
+ subdir = os.path.join(preprocessed_dir, name)
380
+ os.makedirs(subdir, exist_ok=True)
381
+ np.save(os.path.join(subdir, f'{struct_id}.npy'), data)
382
+
383
+ return {
384
+ 'id': struct_id,
385
+ 'n_assemblies': len(asmb_lengths),
386
+ 'total_residues': sum(v[0] for v in asmb_lengths.values()),
387
+ 'error': None
388
+ }
389
+
390
+ except Exception as e:
391
+ return {'id': struct_id, 'error': str(e)}
392
+
393
+
394
+ def preprocess_structures_multiprocess(output_dir, num_workers=None):
395
+ """Preprocess all structures using multiple processes."""
396
+
397
+ if num_workers is None:
398
+ num_workers = max(1, cpu_count() - 2)
399
+
400
+ # Load filtered data
401
+ filtered_path = os.path.join(output_dir, 'filtered_structures.csv')
402
+ if not os.path.exists(filtered_path):
403
+ print(f"Error: {filtered_path} not found. Run 'scan' first.")
404
+ return
405
+
406
+ df = pd.read_csv(filtered_path)
407
+ print(f"Preprocessing {len(df)} structures with {num_workers} workers...")
408
+
409
+ # Load params
410
+ params = {'NA_SHARED_TOKENS': 1, 'EXCLUDE_RES': ['HOH', 'NA', 'CL', 'K', 'BR']}
411
+
412
+ # Prepare arguments
413
+ args_list = [(row.to_dict(), output_dir, params) for _, row in df.iterrows()]
414
+
415
+ results = []
416
+ errors = []
417
+
418
+ with Pool(num_workers) as pool:
419
+ for result in tqdm(pool.imap_unordered(preprocess_single_structure, args_list),
420
+ total=len(args_list), desc="Preprocessing"):
421
+ if result.get('error'):
422
+ errors.append(result)
423
+ else:
424
+ results.append(result)
425
+
426
+ print(f"Successfully preprocessed: {len(results)}")
427
+ print(f"Errors: {len(errors)}")
428
+
429
+ # Update dataframe with preprocessing paths
430
+ preprocessed_ids = {r['id'] for r in results}
431
+ df = df[df['id'].isin(preprocessed_ids)].copy()
432
+
433
+ preprocessed_dir = os.path.join(output_dir, 'preprocessed')
434
+ df['sequences_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'sequences', f'{x}.csv'))
435
+ df['asmb_lengths_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_lengths', f'{x}.npy'))
436
+ df['asmb_interface_masks_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_interface_masks', f'{x}.npy'))
437
+ df['asmb_side_chain_interface_masks_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_side_chain_interface_masks', f'{x}.npy'))
438
+ df['asmb_nearest_protein_side_chain_index_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_nearest_protein_side_chain_index', f'{x}.npy'))
439
+ df['asmb_base_pair_masks_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_base_pair_masks', f'{x}.npy'))
440
+ df['asmb_base_pair_index_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_base_pair_index', f'{x}.npy'))
441
+ df['asmb_canonical_base_pair_masks_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_canonical_base_pair_masks', f'{x}.npy'))
442
+ df['asmb_canonical_base_pair_index_path'] = df['id'].apply(lambda x: os.path.join(preprocessed_dir, 'asmb_canonical_base_pair_index', f'{x}.npy'))
443
+
444
+ # Add training columns
445
+ df['dataset_name'] = 'diffusion_pdb'
446
+ df['sampling_probability'] = 1.0
447
+ df['ppm_paths'] = '[]'
448
+
449
+ preprocessed_path = os.path.join(output_dir, 'preprocessed_structures.csv')
450
+ df.to_csv(preprocessed_path, index=False)
451
+ print(f"Saved preprocessed data to {preprocessed_path}")
452
+
453
+ if errors:
454
+ error_path = os.path.join(output_dir, 'preprocess_errors.csv')
455
+ pd.DataFrame(errors).to_csv(error_path, index=False)
456
+
457
+
458
+ # ============================================================================
459
+ # Step 3: Sequence Clustering (Optional, requires CD-HIT)
460
+ # ============================================================================
461
+
462
+ def read_fasta(path):
463
+ """Read a FASTA file and return list of (id, sequence) tuples."""
464
+ with open(path, 'r') as f:
465
+ content = f.read().strip()
466
+
467
+ entries = content[1:].split('\n>') if content.startswith('>') else content.split('\n>')
468
+ pairs = []
469
+ for entry in entries:
470
+ lines = entry.strip().split('\n')
471
+ header = lines[0].strip()
472
+ sequence = ''.join(lines[1:])
473
+ pairs.append((header, sequence))
474
+ return pairs
475
+
476
+
477
+ def write_fasta(path, id_sequence_pairs):
478
+ """Write (id, sequence) pairs to a FASTA file."""
479
+ with open(path, 'w') as f:
480
+ for seq_id, sequence in id_sequence_pairs:
481
+ f.write(f">{seq_id}\n{sequence}\n")
482
+
483
+
484
+ def read_cdhit_clusters(path):
485
+ """Read CD-HIT cluster file."""
486
+ with open(path, 'r') as f:
487
+ content = f.read().strip()
488
+
489
+ clusters = {}
490
+ cluster_entries = content[1:].split('\n>') if content.startswith('>') else content.split('\n>')
491
+
492
+ for entry in cluster_entries:
493
+ lines = entry.strip().split('\n')
494
+ cluster_header = lines[0]
495
+ cluster_id = int(cluster_header.strip().split(' ')[1])
496
+
497
+ members = []
498
+ for line in lines[1:]:
499
+ if ', >' in line:
500
+ _, member_entry = line.strip().split(', >')
501
+ member_id = member_entry.split('...')[0]
502
+ members.append(member_id)
503
+
504
+ clusters[cluster_id] = members
505
+
506
+ return clusters
507
+
508
+
509
+ def standardize_na_sequence(sequence):
510
+ """Standardize nucleic acid sequence: U->T, non-ACGT->X."""
511
+ mapping = {'A': 'A', 'C': 'C', 'G': 'G', 'T': 'T', 'U': 'T'}
512
+ return ''.join(mapping.get(c, 'X') for c in sequence.upper())
513
+
514
+
515
+ def cluster_sequences(output_dir, cdhit_path=None, protein_identity=0.4, na_identity=0.8):
516
+ """Cluster protein and nucleic acid sequences using CD-HIT.
517
+
518
+ Args:
519
+ output_dir: Output directory containing preprocessed data
520
+ cdhit_path: Path to CD-HIT installation directory
521
+ protein_identity: Sequence identity threshold for proteins (default 0.4)
522
+ na_identity: Sequence identity threshold for nucleic acids (default 0.8)
523
+ """
524
+
525
+ if cdhit_path is None:
526
+ # Try to find CD-HIT in PATH
527
+ cdhit_path = shutil.which('cd-hit')
528
+ if cdhit_path:
529
+ cdhit_path = os.path.dirname(cdhit_path)
530
+
531
+ if cdhit_path is None or not os.path.exists(cdhit_path):
532
+ print("Warning: CD-HIT not found. Skipping clustering.")
533
+ print(" Install CD-HIT and provide path with --cdhit_path")
534
+ print(" Or download from: https://github.com/weizhongli/cdhit/releases")
535
+ return None
536
+
537
+ cdhit_bin = os.path.join(cdhit_path, 'cd-hit')
538
+ cdhit_est_bin = os.path.join(cdhit_path, 'cd-hit-est')
539
+
540
+ if not os.path.exists(cdhit_bin):
541
+ cdhit_bin = shutil.which('cd-hit')
542
+ if not os.path.exists(cdhit_est_bin):
543
+ cdhit_est_bin = shutil.which('cd-hit-est')
544
+
545
+ # Load preprocessed data
546
+ preprocessed_path = os.path.join(output_dir, 'preprocessed_structures.csv')
547
+ if not os.path.exists(preprocessed_path):
548
+ print(f"Error: {preprocessed_path} not found. Run 'preprocess' first.")
549
+ return None
550
+
551
+ df = pd.read_csv(preprocessed_path)
552
+ print(f"Clustering sequences from {len(df)} structures...")
553
+
554
+ clustering_dir = os.path.join(output_dir, 'clustering')
555
+ os.makedirs(clustering_dir, exist_ok=True)
556
+
557
+ # Gather all sequences
558
+ protein_sequences = set()
559
+ na_sequences = set()
560
+
561
+ for seq_path in tqdm(df['sequences_path'], desc="Gathering sequences"):
562
+ if os.path.exists(seq_path):
563
+ seq_df = pd.read_csv(seq_path)
564
+ for chain_type, sequence in zip(seq_df['chain_type'], seq_df['sequence']):
565
+ if chain_type == 'polypeptide(L)':
566
+ protein_sequences.add(sequence)
567
+ elif chain_type in ['polydeoxyribonucleotide', 'polyribonucleotide',
568
+ 'polydeoxyribonucleotide/polyribonucleotide hybrid']:
569
+ na_sequences.add(sequence)
570
+
571
+ print(f" Unique protein sequences: {len(protein_sequences)}")
572
+ print(f" Unique nucleic acid sequences: {len(na_sequences)}")
573
+
574
+ # Write FASTA files
575
+ protein_fasta = os.path.join(clustering_dir, 'all_protein_sequences.fa')
576
+ na_fasta = os.path.join(clustering_dir, 'all_na_sequences.fa')
577
+ na_std_fasta = os.path.join(clustering_dir, 'all_na_sequences_std.fa')
578
+
579
+ write_fasta(protein_fasta, enumerate(protein_sequences))
580
+ write_fasta(na_fasta, enumerate(na_sequences))
581
+
582
+ # Write standardized NA sequences
583
+ na_std_sequences = [standardize_na_sequence(s) for s in na_sequences]
584
+ write_fasta(na_std_fasta, enumerate(na_std_sequences))
585
+
586
+ # Run CD-HIT for proteins
587
+ protein_clusters = {}
588
+ if cdhit_bin and len(protein_sequences) > 0:
589
+ print("\nClustering protein sequences with CD-HIT...")
590
+ protein_out = os.path.join(clustering_dir, 'protein_clusters')
591
+
592
+ # Determine word size based on identity threshold
593
+ word_size = 2 if protein_identity < 0.5 else (3 if protein_identity < 0.6 else 5)
594
+
595
+ cmd = [
596
+ cdhit_bin,
597
+ '-i', protein_fasta,
598
+ '-o', protein_out,
599
+ '-c', str(protein_identity),
600
+ '-n', str(word_size),
601
+ '-d', '0',
602
+ '-M', '16000',
603
+ '-T', '0',
604
+ '-aL', '0.9',
605
+ '-aS', '0.9'
606
+ ]
607
+
608
+ try:
609
+ subprocess.run(cmd, check=True, capture_output=True)
610
+ protein_clusters = read_cdhit_clusters(protein_out + '.clstr')
611
+ print(f" Protein clusters: {len(protein_clusters)}")
612
+ except Exception as e:
613
+ print(f" Warning: Protein clustering failed: {e}")
614
+
615
+ # Run CD-HIT-EST for nucleic acids
616
+ na_clusters = {}
617
+ if cdhit_est_bin and len(na_sequences) > 0:
618
+ print("\nClustering nucleic acid sequences with CD-HIT-EST...")
619
+ na_out = os.path.join(clustering_dir, 'na_clusters')
620
+
621
+ word_size = 4 if na_identity >= 0.8 else 3
622
+
623
+ cmd = [
624
+ cdhit_est_bin,
625
+ '-i', na_std_fasta,
626
+ '-o', na_out,
627
+ '-c', str(na_identity),
628
+ '-n', str(word_size),
629
+ '-d', '0',
630
+ '-M', '16000',
631
+ '-T', '0',
632
+ '-l', '4',
633
+ '-aL', '0.9',
634
+ '-aS', '0.9'
635
+ ]
636
+
637
+ try:
638
+ subprocess.run(cmd, check=True, capture_output=True)
639
+ na_clusters = read_cdhit_clusters(na_out + '.clstr')
640
+ print(f" Nucleic acid clusters: {len(na_clusters)}")
641
+ except Exception as e:
642
+ print(f" Warning: NA clustering failed: {e}")
643
+
644
+ # Create sequence -> cluster mappings
645
+ protein_seq_to_cluster = {}
646
+ protein_seq_list = list(protein_sequences)
647
+ for cluster_id, members in protein_clusters.items():
648
+ for member in members:
649
+ try:
650
+ idx = int(member)
651
+ protein_seq_to_cluster[protein_seq_list[idx]] = cluster_id
652
+ except:
653
+ pass
654
+
655
+ na_seq_to_cluster = {}
656
+ na_seq_list = list(na_sequences)
657
+ na_std_list = [standardize_na_sequence(s) for s in na_seq_list]
658
+ std_to_cluster = {}
659
+ for cluster_id, members in na_clusters.items():
660
+ for member in members:
661
+ try:
662
+ idx = int(member)
663
+ std_to_cluster[na_std_list[idx]] = cluster_id
664
+ except:
665
+ pass
666
+
667
+ for seq in na_seq_list:
668
+ std_seq = standardize_na_sequence(seq)
669
+ if std_seq in std_to_cluster:
670
+ na_seq_to_cluster[seq] = std_to_cluster[std_seq]
671
+
672
+ # Save cluster mappings
673
+ np.save(os.path.join(clustering_dir, 'protein_seq_to_cluster.npy'), protein_seq_to_cluster)
674
+ np.save(os.path.join(clustering_dir, 'na_seq_to_cluster.npy'), na_seq_to_cluster)
675
+
676
+ print(f"\nClustering complete. Results saved to {clustering_dir}")
677
+
678
+ return {
679
+ 'protein_seq_to_cluster': protein_seq_to_cluster,
680
+ 'na_seq_to_cluster': na_seq_to_cluster,
681
+ 'n_protein_clusters': len(protein_clusters),
682
+ 'n_na_clusters': len(na_clusters)
683
+ }
684
+
685
+
686
+ # ============================================================================
687
+ # Step 4: Train/Valid/Test Split
688
+ # ============================================================================
689
+
690
+ def create_train_valid_split(output_dir, valid_fraction=0.1, test_fraction=0.0,
691
+ seed=42, use_clustering=False):
692
+ """Create train/valid/test split.
693
+
694
+ Args:
695
+ output_dir: Output directory
696
+ valid_fraction: Fraction for validation set
697
+ test_fraction: Fraction for test set
698
+ seed: Random seed
699
+ use_clustering: Whether to use sequence clustering for split (prevents data leakage)
700
+ """
701
+
702
+ preprocessed_path = os.path.join(output_dir, 'preprocessed_structures.csv')
703
+ if not os.path.exists(preprocessed_path):
704
+ print(f"Error: {preprocessed_path} not found. Run 'preprocess' first.")
705
+ return
706
+
707
+ df = pd.read_csv(preprocessed_path)
708
+ print(f"Splitting {len(df)} structures...")
709
+ print(f" Valid fraction: {valid_fraction}")
710
+ print(f" Test fraction: {test_fraction}")
711
+ print(f" Train fraction: {1 - valid_fraction - test_fraction}")
712
+
713
+ np.random.seed(seed)
714
+
715
+ if use_clustering:
716
+ # Use cluster-based splitting to prevent data leakage
717
+ clustering_dir = os.path.join(output_dir, 'clustering')
718
+ na_cluster_path = os.path.join(clustering_dir, 'na_seq_to_cluster.npy')
719
+
720
+ if os.path.exists(na_cluster_path):
721
+ print("\nUsing cluster-based splitting (prevents data leakage)...")
722
+ na_seq_to_cluster = np.load(na_cluster_path, allow_pickle=True).item()
723
+
724
+ # Get cluster IDs for each structure
725
+ structure_clusters = {}
726
+ for idx, seq_path in enumerate(df['sequences_path']):
727
+ if os.path.exists(seq_path):
728
+ seq_df = pd.read_csv(seq_path)
729
+ clusters = set()
730
+ for chain_type, sequence in zip(seq_df['chain_type'], seq_df['sequence']):
731
+ if chain_type in ['polydeoxyribonucleotide', 'polyribonucleotide',
732
+ 'polydeoxyribonucleotide/polyribonucleotide hybrid']:
733
+ if sequence in na_seq_to_cluster:
734
+ clusters.add(na_seq_to_cluster[sequence])
735
+ structure_clusters[idx] = clusters
736
+
737
+ # Get all unique clusters
738
+ all_clusters = set()
739
+ for clusters in structure_clusters.values():
740
+ all_clusters.update(clusters)
741
+ all_clusters = list(all_clusters)
742
+ np.random.shuffle(all_clusters)
743
+
744
+ n_test = int(len(all_clusters) * test_fraction)
745
+ n_valid = int(len(all_clusters) * valid_fraction)
746
+
747
+ test_clusters = set(all_clusters[:n_test])
748
+ valid_clusters = set(all_clusters[n_test:n_test + n_valid])
749
+ train_clusters = set(all_clusters[n_test + n_valid:])
750
+
751
+ # Assign structures to splits based on cluster membership
752
+ test_indices = []
753
+ valid_indices = []
754
+ train_indices = []
755
+
756
+ for idx, clusters in structure_clusters.items():
757
+ if clusters & test_clusters:
758
+ test_indices.append(idx)
759
+ elif clusters & valid_clusters:
760
+ valid_indices.append(idx)
761
+ else:
762
+ train_indices.append(idx)
763
+
764
+ print(f" Cluster-based split:")
765
+ print(f" Train clusters: {len(train_clusters)}, Valid clusters: {len(valid_clusters)}, Test clusters: {len(test_clusters)}")
766
+ else:
767
+ print("Warning: Clustering data not found, falling back to random split")
768
+ use_clustering = False
769
+
770
+ if not use_clustering:
771
+ # Random split
772
+ indices = np.random.permutation(len(df))
773
+ n_test = int(len(df) * test_fraction)
774
+ n_valid = int(len(df) * valid_fraction)
775
+
776
+ test_indices = indices[:n_test]
777
+ valid_indices = indices[n_test:n_test + n_valid]
778
+ train_indices = indices[n_test + n_valid:]
779
+
780
+ train_df = df.iloc[train_indices].copy()
781
+ valid_df = df.iloc[valid_indices].copy()
782
+ test_df = df.iloc[test_indices].copy() if len(test_indices) > 0 else pd.DataFrame()
783
+
784
+ # Save
785
+ train_path = os.path.join(output_dir, 'train.csv')
786
+ valid_path = os.path.join(output_dir, 'valid.csv')
787
+ test_path = os.path.join(output_dir, 'test.csv')
788
+ all_path = os.path.join(output_dir, 'all.csv')
789
+
790
+ train_df.to_csv(train_path, index=False)
791
+ valid_df.to_csv(valid_path, index=False)
792
+ if len(test_df) > 0:
793
+ test_df.to_csv(test_path, index=False)
794
+ df.to_csv(all_path, index=False)
795
+
796
+ print(f"\nSplit complete:")
797
+ print(f" Train: {len(train_df)} -> {train_path}")
798
+ print(f" Valid: {len(valid_df)} -> {valid_path}")
799
+ if len(test_df) > 0:
800
+ print(f" Test: {len(test_df)} -> {test_path}")
801
+
802
+ # Print statistics
803
+ print("\nDataset statistics:")
804
+ print(f" Total structures: {len(df)}")
805
+ if 'has_protein' in df.columns:
806
+ print(f" With protein: {df['has_protein'].sum()}")
807
+ if 'has_dna' in df.columns:
808
+ print(f" With DNA: {df['has_dna'].sum()}")
809
+ if 'has_rna' in df.columns:
810
+ print(f" With RNA: {df['has_rna'].sum()}")
811
+
812
+
813
+ # ============================================================================
814
+ # Main
815
+ # ============================================================================
816
+
817
+ def main():
818
+ parser = argparse.ArgumentParser(
819
+ description="Full dataset preparation for NA-MPNN Diffusion (满血版)",
820
+ formatter_class=argparse.RawDescriptionHelpFormatter,
821
+ epilog="""
822
+ Examples:
823
+ # Quick test with small sample
824
+ python prepare_diffusion_dataset_full.py all \\
825
+ --mmcif_dir pdb_mmcif --output_dir datasets/test \\
826
+ --sample_size 1000 --require_na --num_workers 16
827
+
828
+ # Full PDB with nucleic acids only
829
+ python prepare_diffusion_dataset_full.py all \\
830
+ --mmcif_dir pdb_mmcif --output_dir datasets/na_full \\
831
+ --require_na --num_workers 32
832
+
833
+ # Step-by-step with clustering
834
+ python prepare_diffusion_dataset_full.py scan --mmcif_dir pdb_mmcif --output_dir out --num_workers 16
835
+ python prepare_diffusion_dataset_full.py preprocess --output_dir out --num_workers 16
836
+ python prepare_diffusion_dataset_full.py cluster --output_dir out --cdhit_path /path/to/cdhit
837
+ python prepare_diffusion_dataset_full.py split --output_dir out --use_clustering
838
+ """
839
+ )
840
+
841
+ subparsers = parser.add_subparsers(dest='command', help='Commands')
842
+
843
+ # Scan command
844
+ scan_parser = subparsers.add_parser('scan', help='Scan PDB database (Step 1)')
845
+ scan_parser.add_argument('--mmcif_dir', type=str, required=True,
846
+ help='Path to mmCIF files directory')
847
+ scan_parser.add_argument('--output_dir', type=str, required=True,
848
+ help='Output directory for results')
849
+ scan_parser.add_argument('--num_workers', type=int, default=None,
850
+ help='Number of parallel workers (default: CPU count - 2)')
851
+ scan_parser.add_argument('--sample_size', type=int, default=None,
852
+ help='Sample N structures for testing (default: use all)')
853
+ scan_parser.add_argument('--require_na', action='store_true',
854
+ help='Only keep structures with nucleic acids')
855
+ scan_parser.add_argument('--require_protein', action='store_true',
856
+ help='Only keep structures with proteins')
857
+ scan_parser.add_argument('--min_heavy_atoms', type=int, default=100,
858
+ help='Minimum number of heavy atoms (default: 100)')
859
+ scan_parser.add_argument('--min_coverage', type=float, default=0.9,
860
+ help='Minimum atom coverage (default: 0.9)')
861
+ scan_parser.add_argument('--max_resolution', type=float, default=3.5,
862
+ help='Maximum resolution in Å (default: 3.5)')
863
+ scan_parser.add_argument('--max_unknown', type=int, default=20,
864
+ help='Maximum unknown residues (default: 20)')
865
+
866
+ # Preprocess command
867
+ preprocess_parser = subparsers.add_parser('preprocess', help='Preprocess structures (Step 2)')
868
+ preprocess_parser.add_argument('--output_dir', type=str, required=True)
869
+ preprocess_parser.add_argument('--num_workers', type=int, default=None)
870
+
871
+ # Cluster command
872
+ cluster_parser = subparsers.add_parser('cluster', help='Cluster sequences with CD-HIT (Step 3, optional)')
873
+ cluster_parser.add_argument('--output_dir', type=str, required=True)
874
+ cluster_parser.add_argument('--cdhit_path', type=str, default=None,
875
+ help='Path to CD-HIT installation directory')
876
+ cluster_parser.add_argument('--protein_identity', type=float, default=0.4,
877
+ help='Protein clustering identity threshold (default: 0.4)')
878
+ cluster_parser.add_argument('--na_identity', type=float, default=0.8,
879
+ help='Nucleic acid clustering identity threshold (default: 0.8)')
880
+
881
+ # Split command
882
+ split_parser = subparsers.add_parser('split', help='Create train/valid/test split (Step 4)')
883
+ split_parser.add_argument('--output_dir', type=str, required=True)
884
+ split_parser.add_argument('--valid_fraction', type=float, default=0.1,
885
+ help='Validation set fraction (default: 0.1)')
886
+ split_parser.add_argument('--test_fraction', type=float, default=0.0,
887
+ help='Test set fraction (default: 0.0)')
888
+ split_parser.add_argument('--seed', type=int, default=42)
889
+ split_parser.add_argument('--use_clustering', action='store_true',
890
+ help='Use cluster-based split (prevents data leakage)')
891
+
892
+ # All-in-one command
893
+ all_parser = subparsers.add_parser('all', help='Run all steps (scan + preprocess + split)')
894
+ all_parser.add_argument('--mmcif_dir', type=str, required=True)
895
+ all_parser.add_argument('--output_dir', type=str, required=True)
896
+ all_parser.add_argument('--num_workers', type=int, default=None)
897
+ all_parser.add_argument('--sample_size', type=int, default=None)
898
+ all_parser.add_argument('--require_na', action='store_true')
899
+ all_parser.add_argument('--require_protein', action='store_true')
900
+ all_parser.add_argument('--min_heavy_atoms', type=int, default=100)
901
+ all_parser.add_argument('--min_coverage', type=float, default=0.9)
902
+ all_parser.add_argument('--max_resolution', type=float, default=3.5)
903
+ all_parser.add_argument('--valid_fraction', type=float, default=0.1)
904
+ all_parser.add_argument('--test_fraction', type=float, default=0.0)
905
+ all_parser.add_argument('--cdhit_path', type=str, default=None,
906
+ help='Path to CD-HIT (enables clustering)')
907
+
908
+ args = parser.parse_args()
909
+
910
+ if args.command == 'scan':
911
+ df = scan_database_multiprocess(
912
+ args.mmcif_dir, args.output_dir,
913
+ num_workers=args.num_workers,
914
+ sample_size=args.sample_size
915
+ )
916
+ df = filter_scanned_data(
917
+ df,
918
+ min_heavy_atoms=args.min_heavy_atoms,
919
+ min_coverage=args.min_coverage,
920
+ max_resolution=args.max_resolution,
921
+ max_unknown_residues=args.max_unknown,
922
+ require_na=args.require_na,
923
+ require_protein=args.require_protein
924
+ )
925
+ filtered_path = os.path.join(args.output_dir, 'filtered_structures.csv')
926
+ df.to_csv(filtered_path, index=False)
927
+ print(f"\nSaved filtered data to {filtered_path}")
928
+
929
+ elif args.command == 'preprocess':
930
+ preprocess_structures_multiprocess(args.output_dir, args.num_workers)
931
+
932
+ elif args.command == 'cluster':
933
+ cluster_sequences(args.output_dir, args.cdhit_path,
934
+ args.protein_identity, args.na_identity)
935
+
936
+ elif args.command == 'split':
937
+ create_train_valid_split(args.output_dir, args.valid_fraction,
938
+ args.test_fraction, args.seed, args.use_clustering)
939
+
940
+ elif args.command == 'all':
941
+ print("="*70)
942
+ print("Step 1/4: Scanning PDB database (multi-process)")
943
+ print("="*70)
944
+ df = scan_database_multiprocess(
945
+ args.mmcif_dir, args.output_dir,
946
+ num_workers=args.num_workers,
947
+ sample_size=args.sample_size
948
+ )
949
+ df = filter_scanned_data(
950
+ df,
951
+ min_heavy_atoms=args.min_heavy_atoms,
952
+ min_coverage=args.min_coverage,
953
+ max_resolution=args.max_resolution,
954
+ require_na=args.require_na,
955
+ require_protein=args.require_protein
956
+ )
957
+ filtered_path = os.path.join(args.output_dir, 'filtered_structures.csv')
958
+ df.to_csv(filtered_path, index=False)
959
+
960
+ print("\n" + "="*70)
961
+ print("Step 2/4: Preprocessing structures (multi-process)")
962
+ print("="*70)
963
+ preprocess_structures_multiprocess(args.output_dir, args.num_workers)
964
+
965
+ use_clustering = False
966
+ if args.cdhit_path:
967
+ print("\n" + "="*70)
968
+ print("Step 3/4: Clustering sequences (CD-HIT)")
969
+ print("="*70)
970
+ result = cluster_sequences(args.output_dir, args.cdhit_path)
971
+ if result:
972
+ use_clustering = True
973
+ else:
974
+ print("\n" + "="*70)
975
+ print("Step 3/4: Clustering (skipped, no CD-HIT path provided)")
976
+ print("="*70)
977
+
978
+ print("\n" + "="*70)
979
+ print("Step 4/4: Creating train/valid/test split")
980
+ print("="*70)
981
+ create_train_valid_split(args.output_dir, args.valid_fraction,
982
+ args.test_fraction, use_clustering=use_clustering)
983
+
984
+ print("\n" + "="*70)
985
+ print("✓ COMPLETE!")
986
+ print("="*70)
987
+ print(f"\nDataset ready! Update your config with:")
988
+ print(f' "DF_PATH_TRAIN": "{os.path.abspath(os.path.join(args.output_dir, "train.csv"))}",')
989
+ print(f' "DF_PATH_VALID": "{os.path.abspath(os.path.join(args.output_dir, "valid.csv"))}",')
990
+ if args.test_fraction > 0:
991
+ print(f' "DF_PATH_TEST": "{os.path.abspath(os.path.join(args.output_dir, "test.csv"))}",')
992
+ else:
993
+ parser.print_help()
994
+
995
+
996
+ if __name__ == "__main__":
997
+ main()
scripts/preprocess_dataset.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "PARSE_PROTEIN": 1,
3
+ "PARSE_DNA": 1,
4
+ "PARSE_RNA": 1,
5
+ "PARSE_RNA_AS_DNA": 0,
6
+ "NA_SHARED_TOKENS": 1,
7
+ "NA_REF_ATOM": "C1'",
8
+ "INCLUDE_PRED_NA_N": 1,
9
+ "PROTEIN_BACKBONE_OCC_CUTOFF" : 0.8,
10
+ "PROTEIN_SIDE_CHAIN_OCC_CUTOFF": 0.5,
11
+ "DNA_BACKBONE_OCC_CUTOFF" : 0.8,
12
+ "DNA_SIDE_CHAIN_OCC_CUTOFF": 0.5,
13
+ "RNA_BACKBONE_OCC_CUTOFF" : 0.8,
14
+ "RNA_SIDE_CHAIN_OCC_CUTOFF": 0.5,
15
+ "LIGAND_OCC_CUTOFF": 0.01,
16
+ "BATCH_TOKENS" : 6000,
17
+ "EXCLUDE_RES" : ["HOH", "NA", "CL", "K", "BR"],
18
+ "RANDOMIZE_NMR_MODEL" : 0,
19
+ "CROP_LARGE_STRUCTURES" : 0,
20
+ "MIN_OVERLAP_LENGTH": 5,
21
+ "NUM_NEIGHBORS": 48,
22
+ "ATOMS_TO_LOAD" : "all"
23
+ }
scripts/preprocess_dataset.py ADDED
@@ -0,0 +1,1160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import numpy as np
3
+ import pandas as pd
4
+ import torch
5
+ import json
6
+
7
+ import sys
8
+ # Add project root to path
9
+ project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
10
+ sys.path.insert(0, project_root)
11
+
12
+ import pdbutils
13
+ import cifutils
14
+ from na_data_utils import PDBDataset
15
+
16
+ # Load the parameters file.
17
+ params_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "preprocess_dataset.json")
18
+ params = json.load(open(params_path))
19
+
20
+ # Load constants from the parameters file.
21
+ na_side_chain_atoms_len = len(['N9', 'C8', 'C7', 'N7', 'C6', 'N6', 'O6', 'C5', 'C4', 'N4', 'O4', 'N3', 'C2', 'N2', 'O2', 'N1'])
22
+ residue_cutoff = params["BATCH_TOKENS"]
23
+ num_neighbors = params["NUM_NEIGHBORS"]
24
+ interface_distance_cutoff = 5.0 # distance for interface in angstroms
25
+
26
+ if params["ATOMS_TO_LOAD"] == "backbone":
27
+ atom_list_to_save = ['N', 'CA', 'C', 'O', #protein atoms
28
+ 'OP1', 'OP2', 'P', "O5'", "C5'", "C4'", "O4'", "C3'", "O3'", "C2'", "O2'", "C1'" #nucleic acid atoms
29
+ ]
30
+ elif params["ATOMS_TO_LOAD"] == "all":
31
+ atom_list_to_save = ['N', 'CA', 'C', 'CB', 'O', 'CG', 'CG1', 'CG2', 'OG', 'OG1', 'SG', 'CD', 'CD1', 'CD2', 'ND1', 'ND2', 'OD1', 'OD2', 'SD', 'CE', 'CE1', 'CE2', 'CE3', 'NE', 'NE1', 'NE2', 'OE1', 'OE2', 'CH2', 'NH1', 'NH2', 'OH', 'CZ', 'CZ2', 'CZ3', 'NZ', 'OXT', #protein atoms
32
+ 'OP1', 'OP2', 'P', "O5'", "C5'", "C4'", "O4'", "C3'", "O3'", "C2'", "O2'", "C1'", 'N9', 'C8', 'C7', 'N7', 'C6', 'N6', 'O6', 'C5', 'C4', 'N4', 'O4', 'N3', 'C2', 'N2', 'O2', 'N1' #nucleic acid atoms
33
+ ]
34
+
35
+ # Create the parsers and dataset.
36
+ cif_parser = cifutils.CIFParser(skip_res=params["EXCLUDE_RES"],
37
+ randomize_nmr_model=params["RANDOMIZE_NMR_MODEL"])
38
+ pdb_parser = pdbutils.PDBParser()
39
+
40
+ pdb_dataset = PDBDataset(cif_parser=cif_parser,
41
+ pdb_parser=pdb_parser,
42
+ atom_list_to_save=atom_list_to_save,
43
+ parse_protein=params["PARSE_PROTEIN"],
44
+ parse_dna=params["PARSE_DNA"],
45
+ parse_rna=params["PARSE_RNA"],
46
+ parse_rna_as_dna=params["PARSE_RNA_AS_DNA"],
47
+ na_shared_tokens=params["NA_SHARED_TOKENS"],
48
+ protein_backbone_occ_cutoff=params["PROTEIN_BACKBONE_OCC_CUTOFF"],
49
+ protein_side_chain_occ_cutoff=params["PROTEIN_SIDE_CHAIN_OCC_CUTOFF"],
50
+ dna_backbone_occ_cutoff=params["DNA_BACKBONE_OCC_CUTOFF"],
51
+ dna_side_chain_occ_cutoff=params["DNA_SIDE_CHAIN_OCC_CUTOFF"],
52
+ rna_backbone_occ_cutoff=params["RNA_BACKBONE_OCC_CUTOFF"],
53
+ rna_side_chain_occ_cutoff=params["RNA_SIDE_CHAIN_OCC_CUTOFF"],
54
+ crop_large_structures=params["CROP_LARGE_STRUCTURES"],
55
+ batch_tokens=params["BATCH_TOKENS"],
56
+ na_ref_atom=params["NA_REF_ATOM"]
57
+ )
58
+
59
+ # Create a mask for the side chain atoms.
60
+ side_chain_mask = np.zeros(len(pdb_dataset.atom_dict), dtype = np.int32) # [N]
61
+ for atom_name in pdb_dataset.atom_dict:
62
+ if (atom_name not in pdb_dataset.protein_backbone_list) and \
63
+ (atom_name not in pdb_dataset.dna_backbone_list) and \
64
+ (atom_name not in pdb_dataset.rna_backbone_list):
65
+ side_chain_mask[pdb_dataset.atom_dict[atom_name]] = 1
66
+
67
+ side_chain_pairwise_mask = side_chain_mask[:, None] * side_chain_mask[None, :] # [N, N]
68
+
69
+ def write_text_file(path, contents):
70
+ with open(path, mode = "wt") as f:
71
+ f.write(contents)
72
+
73
+ class HB_data:
74
+ # Class modified from Andrew Favor.
75
+
76
+ # amino acid type to integer
77
+ num2aa=[
78
+ 'ALA','ARG','ASN','ASP','CYS',
79
+ 'GLN','GLU','GLY','HIS','ILE',
80
+ 'LEU','LYS','MET','PHE','PRO',
81
+ 'SER','THR','TRP','TYR','VAL',
82
+ 'UNK','MAS',
83
+ ' DA',' DC',' DG',' DT', ' DX',
84
+ ' RA',' RC',' RG',' RU', ' RX',
85
+ 'HIS_D', # only used for cart_bonded
86
+ 'Al', 'As', 'Au', 'B',
87
+ 'Be', 'Br', 'C', 'Ca', 'Cl',
88
+ 'Co', 'Cr', 'Cu', 'F', 'Fe',
89
+ 'Hg', 'I', 'Ir', 'K', 'Li', 'Mg',
90
+ 'Mn', 'Mo', 'N', 'Ni', 'O',
91
+ 'Os', 'P', 'Pb', 'Pd', 'Pr',
92
+ 'Pt', 'Re', 'Rh', 'Ru', 'S',
93
+ 'Sb', 'Se', 'Si', 'Sn', 'Tb',
94
+ 'Te', 'U', 'W', 'V', 'Y', 'Zn',
95
+ 'ATM'
96
+ ]
97
+ aa2num= {x:i for i,x in enumerate(num2aa)}
98
+ aa2num['MEN'] = 20
99
+ aa2num_stripped = {x.strip():i for i,x in enumerate(num2aa)}
100
+ aa2num_stripped['MEN'] = 20
101
+
102
+ # full sc atom representation
103
+ NTOTAL = 36
104
+ aa2long=[
105
+ (" N "," CA "," C "," O "," CB ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","3HB ", None, None, None, None, None, None, None, None), #0 ala
106
+ (" N "," CA "," C "," O "," CB "," CG "," CD "," NE "," CZ "," NH1"," NH2", None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HG ","2HG ","1HD ","2HD "," HE ","1HH1","2HH1","1HH2","2HH2"), #1 arg
107
+ (" N "," CA "," C "," O "," CB "," CG "," OD1"," ND2", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HD2","2HD2", None, None, None, None, None, None, None), #2 asn
108
+ (" N "," CA "," C "," O "," CB "," CG "," OD1"," OD2", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ", None, None, None, None, None, None, None, None, None), #3 asp
109
+ (" N "," CA "," C "," O "," CB "," SG ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB "," HG ", None, None, None, None, None, None, None, None), #4 cys
110
+ (" N "," CA "," C "," O "," CB "," CG "," CD "," OE1"," NE2", None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HG ","2HG ","1HE2","2HE2", None, None, None, None, None), #5 gln
111
+ (" N "," CA "," C "," O "," CB "," CG "," CD "," OE1"," OE2", None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HG ","2HG ", None, None, None, None, None, None, None), #6 glu
112
+ (" N "," CA "," C "," O ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H ","1HA ","2HA ", None, None, None, None, None, None, None, None, None, None), #7 gly
113
+ (" N "," CA "," C "," O "," CB "," CG "," ND1"," CD2"," CE1"," NE2", None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","2HD ","1HE ","2HE ", None, None, None, None, None, None), #8 his
114
+ (" N "," CA "," C "," O "," CB "," CG1"," CG2"," CD1", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA "," HB ","1HG2","2HG2","3HG2","1HG1","2HG1","1HD1","2HD1","3HD1", None, None), #9 ile
115
+ (" N "," CA "," C "," O "," CB "," CG "," CD1"," CD2", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB "," HG ","1HD1","2HD1","3HD1","1HD2","2HD2","3HD2", None, None), #10 leu
116
+ (" N "," CA "," C "," O "," CB "," CG "," CD "," CE "," NZ ", None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HG ","2HG ","1HD ","2HD ","1HE ","2HE ","1HZ ","2HZ ","3HZ "), #11 lys
117
+ (" N "," CA "," C "," O "," CB "," CG "," SD "," CE ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HG ","2HG ","1HE ","2HE ","3HE ", None, None, None, None), #12 met
118
+ (" N "," CA "," C "," O "," CB "," CG "," CD1"," CD2"," CE1"," CE2"," CZ ", None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HD ","2HD ","1HE ","2HE "," HZ ", None, None, None, None), #13 phe
119
+ (" N "," CA "," C "," O "," CB "," CG "," CD ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," HA ","1HB ","2HB ","1HG ","2HG ","1HD ","2HD ", None, None, None, None, None, None), #14 pro
120
+ (" N "," CA "," C "," O "," CB "," OG ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HG "," HA ","1HB ","2HB ", None, None, None, None, None, None, None, None), #15 ser
121
+ (" N "," CA "," C "," O "," CB "," OG1"," CG2", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HG1"," HA "," HB ","1HG2","2HG2","3HG2", None, None, None, None, None, None), #16 thr
122
+ (" N "," CA "," C "," O "," CB "," CG "," CD1"," CD2"," NE1"," CE2"," CE3"," CZ2"," CZ3"," CH2", None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HD ","1HE "," HZ2"," HH2"," HZ3"," HE3", None, None, None), #17 trp
123
+ (" N "," CA "," C "," O "," CB "," CG "," CD1"," CD2"," CE1"," CE2"," CZ "," OH ", None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","1HD ","1HE ","2HE ","2HD "," HH ", None, None, None, None), #18 tyr
124
+ (" N "," CA "," C "," O "," CB "," CG1"," CG2", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA "," HB ","1HG1","2HG1","3HG1","1HG2","2HG2","3HG2", None, None, None, None), #19 val
125
+ (" N "," CA "," C "," O "," CB ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","3HB ", None, None, None, None, None, None, None, None), #20 unk
126
+ (" N "," CA "," C "," O "," CB ", None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","3HB ", None, None, None, None, None, None, None, None), #21 mask
127
+
128
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," N9 "," C4 "," N3 "," C2 "," N1 "," C6 "," C5 "," N7 "," C8 "," N6 ", None, None,"H5''"," H5'"," H4'"," H3'","H2''"," H2'"," H1'"," H2 "," H61"," H62"," H8 ", None, None), #22 DA
129
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," N1 "," C2 "," O2 "," N3 "," C4 "," N4 "," C5 "," C6 ", None, None, None, None,"H5''"," H5'"," H4'"," H3'","H2''"," H2'"," H1'"," H42"," H41"," H5 "," H6 ", None, None), #23 DC
130
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," N9 "," C4 "," N3 "," C2 "," N1 "," C6 "," C5 "," N7 "," C8 "," N2 "," O6 ", None,"H5''"," H5'"," H4'"," H3'","H2''"," H2'"," H1'"," H1 "," H22"," H21"," H8 ", None, None), #24 DG
131
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," N1 "," C2 "," O2 "," N3 "," C4 "," O4 "," C5 "," C7 "," C6 ", None, None, None,"H5''"," H5'"," H4'"," H3'","H2''"," H2'"," H1'"," H3 "," H71"," H72"," H73"," H6 ", None), #25 DT
132
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'", None, None, None, None, None, None, None, None, None, None, None, None,"H5''"," H5'"," H4'"," H3'","H2''"," H2'"," H1'", None, None, None, None, None, None), #26 DX (unk DNA)
133
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," O2'"," N1 "," C2 "," N3 "," C4 "," C5 "," C6 "," N6 "," N7 "," C8 "," N9 ", None," H5'","H5''"," H4'"," H3'"," H2'","HO2'"," H1'"," H2 "," H61"," H62"," H8 ", None, None), #27 A
134
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," O2'"," N1 "," C2 "," O2 "," N3 "," C4 "," N4 "," C5 "," C6 ", None, None, None," H5'","H5''"," H4'"," H3'"," H2'","HO2'"," H1'"," H42"," H41"," H5 "," H6 ", None, None), #28 C
135
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," O2'"," N1 "," C2 "," N2 "," N3 "," C4 "," C5 "," C6 "," O6 "," N7 "," C8 "," N9 "," H5'","H5''"," H4'"," H3'"," H2'","HO2'"," H1'"," H1 "," H22"," H21"," H8 ", None, None), #29 G
136
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," O2'"," N1 "," C2 "," O2 "," N3 "," C4 "," O4 "," C5 "," C6 ", None, None, None," H5'","H5''"," H4'"," H3'"," H2'","HO2'"," H1'"," H3 "," H5 "," H6 ", None, None, None), #30 U
137
+ (" O4'"," C1'"," C2'"," OP1"," P "," OP2"," O5'"," C5'"," C4'"," C3'"," O3'"," O2'", None, None, None, None, None, None, None, None, None, None, None," H5'","H5''"," H4'"," H3'"," H2'","HO2'"," H1'", None, None, None, None, None, None), #31 RX (unk RNA)
138
+
139
+ (" N "," CA "," C "," O "," CB "," CG "," NE2"," CD2"," CE1"," ND1", None, None, None, None, None, None, None, None, None, None, None, None, None," H "," HA ","1HB ","2HB ","2HD ","1HE ","1HD ", None, None, None, None, None, None), #-1 his_d
140
+ ]
141
+ aa2long_stripped = []
142
+ for aa_tuple in aa2long:
143
+ aa_tuple_stripped = tuple(map(lambda atom_name: atom_name.strip() if atom_name is not None else atom_name, aa_tuple))
144
+ aa2long_stripped.append(aa_tuple_stripped)
145
+
146
+ def __init__(self, seq, xyz, idx=None, **kwargs):
147
+ # Required parameters
148
+ self.seq = seq
149
+ self.xyz = xyz
150
+
151
+ if not idx:
152
+ self.idx = torch.arange(len(seq))
153
+
154
+ # Optional parameters with default values
155
+ self.incl_protein = kwargs.get('incl_protein', True)
156
+ self.eps = kwargs.get('eps', 1e-8)
157
+ # self.use_eigennormals = kwargs.get('use_eigennormals', True)
158
+ # self.use_all_base_atoms_for_MBD = kwargs.get('use_all_base_atoms_for_MBD', False)
159
+ self.edges_to_compute = kwargs.get('edges_to_compute', ['S']) # list base edges to compute, if we want to analyze WC/Hoog/etc
160
+ self.perp_base_edge = kwargs.get('perp_base_edge', 'S') # edge orthogonal to x- and z-directions in base frames (which is generally the sugar edge)
161
+
162
+ self.hbond_da_upper = kwargs.get('hbond_da_upper', 3.9)
163
+ self.hbond_ha_upper = kwargs.get('hbond_ha_upper', 2.5)
164
+
165
+ self.seq_cutoff = kwargs.get('seq_cutoff', 2)
166
+
167
+ compute_local_base_params = kwargs.get('compute_local_base_params', False)
168
+ compute_pairwise_base_params = kwargs.get('compute_pairwise_base_params', False)
169
+ compute_paired_bases = kwargs.get('compute_paired_bases', False)
170
+ compute_helical_params = kwargs.get('compute_helical_params', False)
171
+
172
+
173
+
174
+ self.base_geometry_limits = {}
175
+ self.base_geometry_limits['D_ij'] = kwargs.get('D_ij_limit', 20.0)
176
+ self.base_geometry_limits['H_ij'] = kwargs.get('H_ij_limit', 1.5)
177
+ self.base_geometry_limits['P_ij'] = kwargs.get('P_ij_limit', np.pi/5)
178
+ self.base_geometry_limits['B_ij'] = kwargs.get('B_ij_limit', np.pi/5)
179
+
180
+ # self.base_geometry_limits['O_ij'] = kwargs.get('O_ij_limit', 1.5) # Not used right now, currently allow all values of opening
181
+ self.bp_val_cutoff= kwargs.get('bp_val_cutoff', 0.5) # minimum basepairing score for using a pair when computing helical params
182
+
183
+
184
+
185
+ self.hbond_same_coeff = kwargs.get('hbond_same_coeff', 0.0)
186
+ self.hbond_diff_coeff = kwargs.get('hbond_diff_coeff', 1.0)
187
+ self.min_hbonds_for_bp = kwargs.get('min_hbonds_for_bp', 2.0)
188
+ self.bp_hbond_coeff = kwargs.get('bp_hbond_coeff', 8.0)
189
+
190
+ self.clamp_pairwise_params = kwargs.get('clamp_pairwise_params', False)
191
+
192
+ # Initialize computed attributes
193
+ self._init_hb_chemdata()
194
+ self._compute_initial_values()
195
+ self._compute_hbnets(store_hb_data_dict=kwargs.get('store_hb_data_dict', False))
196
+
197
+ # For now only doing for NA:
198
+ if self.is_na.sum() > 0: # Only compute nucleic params when there are nucleics in the structure
199
+ self._init_nuc_chemdata()
200
+ self._edges_to_compute = list(set(self.edges_to_compute) | {self.perp_base_edge}) # Must compute this base-edge
201
+ self._compute_local_base_params() # Define canonical base-frames for the specified edges
202
+
203
+ if compute_pairwise_base_params or compute_paired_bases:
204
+ self._compute_pairwise_base_params() # Compute pairwise geometric parameters between bases
205
+ self._compute_paired_bases() # Classify bases using H-bond count and pairwise base geometry filters
206
+
207
+ if compute_helical_params:
208
+ self._compute_helical_params() # In progress...
209
+
210
+ def _compute_initial_values(self):
211
+ self.len_s = int(self.seq.shape[0])
212
+ self.sel = torch.arange(self.len_s)
213
+ self.seq_neighbors = torch.le(torch.abs(self.sel[:, None] - self.sel[None, :]), self.seq_cutoff)
214
+ self.is_protein = torch.logical_and((0 <= self.seq), (self.seq <= 21))
215
+ self.is_dna = torch.logical_and((22 <= self.seq), (self.seq <= 25))
216
+ self.is_rna = torch.logical_and((27 <= self.seq), (self.seq <= 30))
217
+ self.is_na = torch.logical_or(self.is_dna, self.is_rna)
218
+
219
+ self.na_inds = [i for i,is_na_i in enumerate(self.is_na) if is_na_i]
220
+ self.na_tensor_inds = {na_i:i for i,na_i in enumerate(self.na_inds)}
221
+
222
+ frame_xyz = self.xyz[:,1,:]
223
+ padded_centers = torch.cat([frame_xyz[:1], frame_xyz[:], frame_xyz[-1:]])
224
+
225
+ self.D_ij_vec = frame_xyz.unsqueeze(0) - frame_xyz.unsqueeze(1) # pairwise displacement vector between frame centers
226
+ self.D_ij = self.D_ij_vec.norm(dim=-1)
227
+ self.M_i = ((padded_centers[1:-1] - padded_centers[:-2]) + (padded_centers[2:] - padded_centers[1:-1])) / 2 # average direction vector from consecutive frames in backbone
228
+ self.M_i_doublet = padded_centers[1:] - padded_centers[:-1]
229
+
230
+ def _compute_hbnets(self, store_hb_data_dict=False):
231
+
232
+ # Distance between frames is between lower and upper bounds:
233
+ D_ij_filter = (self.D_ij <= self.base_geometry_limits['D_ij'])
234
+
235
+ # neighbor filter for all polymer types:
236
+ neighbor_inds = torch.triu(D_ij_filter.bool(),diagonal=1).nonzero(as_tuple=True)
237
+
238
+ pairwise_indices = list(zip(neighbor_inds[0].tolist(), neighbor_inds[1].tolist()))
239
+ bp_pred_summation = torch.zeros_like(self.D_ij)
240
+
241
+ # self.hb_data_dict = {i:{j:[] for j in range(self.len_s)} for i in range(self.len_s) }
242
+ hb_data_dict = {i:{j:{} for j in range(self.len_s)} for i in range(self.len_s) }
243
+
244
+
245
+ self.hbond_summation = torch.zeros_like(D_ij_filter, dtype=torch.float)
246
+
247
+ for i,j in pairwise_indices:
248
+ for a_i, is_donor_i in zip(self.hbond_atoms[HB_data.num2aa[self.seq[i]]]['names'],self.hbond_atoms[HB_data.num2aa[self.seq[i]]]['donor']):
249
+ for a_j, is_donor_j in zip(self.hbond_atoms[HB_data.num2aa[self.seq[j]]]['names'],self.hbond_atoms[HB_data.num2aa[self.seq[j]]]['donor']):
250
+ atom_pair = f"{a_i}-{a_j}" # avoid duplicate counting for atom pairs
251
+ if (is_donor_i+is_donor_j)==1 and (atom_pair not in hb_data_dict[i][j].keys()):
252
+
253
+
254
+ a_i_ind = HB_data.aa2long[self.seq[i]].index(a_i)
255
+ a_j_ind = HB_data.aa2long[self.seq[j]].index(a_j)
256
+
257
+ # Create vector between donor and acceptor atoms
258
+ d_ijk_vec = self.xyz[i,a_i_ind] - self.xyz[j,a_j_ind]
259
+ d_ijk_vec_norm = d_ijk_vec/d_ijk_vec.norm(dim=-1)
260
+
261
+ # Create vector giving direction to donor and acceptor along sidechain covalent bond:
262
+ a_i_vec = torch.cat(
263
+ [(self.xyz[i,a_i_ind]-self.xyz[i,HB_data.aa2long[self.seq[i]].index(r_i)])[:,None] for r_i in self.rear_atoms[HB_data.num2aa[self.seq[i]]][a_i]],
264
+ dim=1).mean(dim=1)
265
+ a_i_vec_norm = a_i_vec/(a_i_vec.norm(dim=-1) + self.eps)
266
+
267
+ a_j_vec = torch.cat(
268
+ [(self.xyz[j,a_j_ind]-self.xyz[j,HB_data.aa2long[self.seq[j]].index(r_j)])[:,None] for r_j in self.rear_atoms[HB_data.num2aa[self.seq[j]]][a_j]],
269
+ dim=1).mean(dim=1)
270
+ a_j_vec_norm = a_j_vec/(a_j_vec.norm(dim=-1) + self.eps)
271
+
272
+
273
+ num_rear_i = len(self.rear_atoms[HB_data.num2aa[self.seq[i]]][a_i])
274
+ element_i = ''.join([_ for _ in a_i if _.isalpha()])[0]
275
+ ideal_angle_i = self.ideal_angle_dict[element_i][num_rear_i]
276
+
277
+ num_rear_j = len(self.rear_atoms[HB_data.num2aa[self.seq[j]]][a_j])
278
+ element_j = ''.join([_ for _ in a_j if _.isalpha()])[0]
279
+ ideal_angle_j = self.ideal_angle_dict[element_j][num_rear_j]
280
+
281
+ ideal_angle_h = torch.tensor((is_donor_i*ideal_angle_i) + (is_donor_j*ideal_angle_j))
282
+
283
+ xyz_d_ijk = ( is_donor_i * self.xyz[i,a_i_ind] ) + ( is_donor_j * self.xyz[j,a_j_ind] )
284
+ xyz_a_ijk = ((1-is_donor_i) * self.xyz[i,a_i_ind] ) + ((1-is_donor_j) * self.xyz[j,a_j_ind] )
285
+
286
+ # (1, rd): vector pointing to donor atom from rear atom(s):
287
+ rd_ijk_vec = (is_donor_i * a_i_vec_norm) + (is_donor_j * a_j_vec_norm)
288
+ rd_ijk_vec_norm = rd_ijk_vec/(rd_ijk_vec.norm(dim=-1) + self.eps)
289
+
290
+ # (2, da): vector pointing from donor atom to acceptor atom, approximately in direction of the hydrogen:
291
+ da_ijk_vec = xyz_a_ijk - xyz_d_ijk
292
+ da_ijk_vec_norm = da_ijk_vec/(da_ijk_vec.norm(dim=-1) + self.eps)
293
+
294
+ # (3, ar): vector pointing to acceptor atom from rear atom(s):
295
+ ar_ijk_vec = ((is_donor_i-1)*a_i_vec_norm) + ((is_donor_j-1)*a_j_vec_norm)
296
+ ar_ijk_vec_norm = ar_ijk_vec/(ar_ijk_vec.norm(dim=-1) + self.eps)
297
+
298
+
299
+ norm_vec = torch.cross(-rd_ijk_vec_norm, da_ijk_vec_norm, dim=-1)
300
+ norm_unit = norm_vec / (norm_vec.norm() + self.eps) # Avoid divide-by-zero
301
+ perp_vec = torch.cross(norm_unit, -rd_ijk_vec_norm, dim=-1)
302
+ perp_unit = perp_vec / (perp_vec.norm() + self.eps)
303
+
304
+
305
+ # (4, dh): predicted ideal angle pointing from donor atom to hydrogen atom:
306
+ dh_ijk_vec = (torch.sin(ideal_angle_h) * perp_unit) - (torch.cos(ideal_angle_h) * rd_ijk_vec_norm)
307
+ dh_ijk_vec_norm = dh_ijk_vec / (dh_ijk_vec.norm() + self.eps) # norm actually matters here, because Donor -> H distance is exactly 1A.
308
+ ideal_xyz_h_ijk = xyz_d_ijk + dh_ijk_vec_norm # Compute ideal hydrogen placement
309
+
310
+ # (5, ha): vector pointing from ideal hydrogen to acceptor atom
311
+ ha_ijk_vec = xyz_a_ijk - ideal_xyz_h_ijk
312
+ ha_ijk_vec_norm = ha_ijk_vec / (ha_ijk_vec.norm() + self.eps)
313
+
314
+
315
+ t_rdh = torch.acos( ( -rd_ijk_vec_norm * dh_ijk_vec_norm ).sum(dim=-1) )
316
+ t_rda = torch.acos( ( -rd_ijk_vec_norm * da_ijk_vec_norm ).sum(dim=-1) )
317
+ t_dha = torch.acos( ( -dh_ijk_vec_norm * ha_ijk_vec_norm ).sum(dim=-1) )
318
+ t_dar = torch.acos( ( -da_ijk_vec_norm * ar_ijk_vec_norm ).sum(dim=-1) )
319
+ t_har = torch.acos( ( -ha_ijk_vec_norm * ar_ijk_vec_norm ).sum(dim=-1) )
320
+
321
+
322
+ da_ijk = da_ijk_vec.norm(dim=-1)
323
+ ha_ijk = ha_ijk_vec.norm(dim=-1)
324
+
325
+ hbond_da_filter = ( da_ijk <= self.hbond_da_upper )
326
+ hbond_ha_filter = ( ha_ijk <= self.hbond_ha_upper ) # SHOULD BE MOST IMPORTANT
327
+
328
+ hbond_t_rda_filter = ( t_rda >= 5*np.pi/9 ) # cutoff (100 degrees) proposed by: https://pmc.ncbi.nlm.nih.gov/articles/PMC8261469/
329
+ hbond_t_dar_filter = ( t_dar >= 5*np.pi/9 ) # similar logic to above
330
+ hbond_t_dha_filter = ( t_dha >= np.pi/2 ) # could also increase this one maybe
331
+
332
+ bond_prob_ij = (hbond_ha_filter * hbond_da_filter * hbond_t_rda_filter * hbond_t_dar_filter).float()
333
+
334
+ self.hbond_summation[i,j] += bond_prob_ij
335
+ self.hbond_summation[j,i] += bond_prob_ij
336
+
337
+ hb_data_dict[i][j][atom_pair] = {'d': da_ijk, 'l': ha_ijk, "t_rdh": t_rdh, "t_rda": t_rda, "t_dha": t_dha, "t_dar": t_dar, "t_har": t_har, 'atoms': atom_pair, "bonded": bond_prob_ij, }
338
+ hb_data_dict[j][i][atom_pair] = {'d': da_ijk, 'l': ha_ijk, "t_rdh": t_rdh, "t_rda": t_rda, "t_dha": t_dha, "t_dar": t_dar, "t_har": t_har, 'atoms': atom_pair, "bonded": bond_prob_ij, }
339
+
340
+ if store_hb_data_dict:
341
+ self.hb_data_dict = hb_data_dict
342
+
343
+ def _compute_local_base_params(self):
344
+ """
345
+ local base params , based on interaction-edges
346
+
347
+ """
348
+ xyz_na = self.xyz[self.is_na]
349
+ seq_na = self.seq[self.is_na]
350
+
351
+
352
+ """
353
+ (1). Compute base normals and correct orientation based on backbone direction.
354
+ """
355
+ base_atom_xyz = torch.stack([xyz_na[i,self.ring_atom_inds[HB_data.num2aa[s_i]],:] for i,s_i in enumerate(seq_na)] )
356
+ base_atom_centers = torch.mean(base_atom_xyz, dim=1)
357
+
358
+ centered_points = base_atom_xyz - base_atom_centers.unsqueeze(1)
359
+ cov_matrix = torch.einsum('bij,bik->bjk', centered_points, centered_points) / (centered_points.shape[1] - 1)
360
+ eigenvalues, eigenvectors = torch.linalg.eigh(cov_matrix)
361
+
362
+ # Keep N_i local, since we will only need Z_i after this function
363
+ N_i = eigenvectors[:, :, 0] / eigenvectors[:, :, 0].norm(dim=1, keepdim=True)
364
+
365
+ # Correct base normals to point in direction of backbone 5' -> 3' by projecting backbone vec M_i onto this unit Z_i vector to flip direction if necessary
366
+ self.Z_i = N_i * torch.sum(self.M_i[self.is_na] * N_i, dim=-1, keepdim=True)
367
+ self.Z_i = self.Z_i / (torch.norm(self.Z_i, dim=-1, keepdim=True) + self.eps)
368
+
369
+ """
370
+ (2). Compute the desired edge-vectors for the bases (watson-crick, hoogstein, sugar, etc)
371
+ * W edge: N1 of purine, N3 of pyrimidine
372
+ * H edge: N7 of purine, C5 of pyrimidine
373
+ * S edge: N3 of purine, C1' of pyrimidine
374
+ * B (pseudo)-edge: connects C1' to first base-atom (N1 or N3?)
375
+ """
376
+ # Compute X and Y vectors for edges of interest:
377
+ self.edge_X_vecs, self.edge_Y_vecs = {}, {}
378
+ for edge in self.edges_to_compute:
379
+ self.edge_X_vecs[edge] = torch.stack([xyz_na[i,self.vec_atom_inds[HB_data.num2aa[s_i]][f'{edge}_stop'],:] - xyz_na[i,self.vec_atom_inds[HB_data.num2aa[s_i]][f'{edge}_start'],:] for i, s_i in enumerate(seq_na)])
380
+ self.edge_X_vecs[edge] = self.edge_X_vecs[edge] / (torch.norm(self.edge_X_vecs[edge], dim=-1, keepdim=True) + self.eps)
381
+
382
+ # self.edge_Y_vecs[edge] = torch.cross(self.edge_X_vecs[edge], N_i, dim=-1)
383
+ self.edge_Y_vecs[edge] = torch.cross(self.edge_X_vecs[edge], self.Z_i, dim=-1)
384
+ self.edge_Y_vecs[edge] = self.edge_Y_vecs[edge] / (torch.norm(self.edge_Y_vecs[edge], dim=-1, keepdim=True) + self.eps)
385
+
386
+ """
387
+ (3). Define canonical base frames in terms of one specific edge.
388
+ The sugar edge generally works best here, as it most often points towards binding partner
389
+ (orthogonal to both major groove and helical axis)
390
+ """
391
+
392
+ self.X_i = torch.cross(self.Z_i, self.edge_X_vecs[self.perp_base_edge], dim=-1)
393
+ self.X_i = self.X_i / (torch.norm(self.X_i, dim=-1, keepdim=True) + self.eps)
394
+
395
+ self.Y_i = torch.cross(self.X_i, self.Z_i, dim=-1)
396
+ self.Y_i = self.Y_i / (torch.norm(self.Y_i, dim=-1, keepdim=True) + self.eps)
397
+ self.base_atom_centers = base_atom_centers
398
+
399
+ def _compute_pairwise_base_params(self):
400
+
401
+ D_ij_vec_na = self.D_ij_vec[torch.arange(self.is_na.sum()).unsqueeze(1), torch.arange(self.is_na.sum())]
402
+ base_D_ij_vec = self.base_atom_centers.unsqueeze(0) - self.base_atom_centers.unsqueeze(1)
403
+
404
+ # stack mean Z-direction vectors for parallel (0) and antiparallel (1) orientations in zeroth-axis:
405
+ Z_ij_oris = 0.5*torch.stack((self.Z_i.unsqueeze(1) + self.Z_i.unsqueeze(0), self.Z_i.unsqueeze(1) - self.Z_i.unsqueeze(0) ), dim=0)
406
+
407
+ # Check which are parallel or antiparallel:
408
+ bases_are_antiparallel = (Z_ij_oris[1].norm(dim=-1) > Z_ij_oris[0].norm(dim=-1)).long()
409
+
410
+ # Extract mean Z-direction based on maximum shared direction between planes of base i and j:
411
+ Z_ij = Z_ij_oris[bases_are_antiparallel, torch.arange(self.is_na.sum()).unsqueeze(1), torch.arange(self.is_na.sum())]
412
+ Z_ij = Z_ij / (torch.norm(Z_ij, dim=-1, keepdim=True) + self.eps)
413
+
414
+ Y_ij = D_ij_vec_na / (torch.norm(D_ij_vec_na, dim=-1, keepdim=True) + self.eps)
415
+ X_ij = torch.cross(Z_ij, Y_ij, dim=-1)
416
+
417
+ X_ij = X_ij / (torch.norm(X_ij, dim=-1, keepdim=True) + self.eps)
418
+
419
+ self.H_ij = torch.sum(base_D_ij_vec * Z_ij, dim=-1)
420
+ self.H_ij_vec = self.H_ij[...,None] * Z_ij
421
+
422
+ # Opening: angle between local x_i and x_j within global X_ij-Y_ij plane:
423
+ proj_X_i_XY = ((self.X_i[:, None, :] * X_ij).sum(dim=-1, keepdim=True) * X_ij) + ((self.X_i[:, None, :] * Y_ij).sum(dim=-1, keepdim=True) * Y_ij)
424
+ proj_X_i_XY_norm = proj_X_i_XY / (torch.norm(proj_X_i_XY, dim=-1, keepdim=True) + self.eps)
425
+ cos_opening = (proj_X_i_XY_norm * proj_X_i_XY_norm.transpose(1,0)).sum(dim=-1)
426
+ if self.clamp_pairwise_params:
427
+ cos_opening = torch.clamp(cos_opening, -1.0, 1.0)
428
+ O_ij = torch.acos(cos_opening)
429
+
430
+ # Buckle: angle between local z_i and z_j within global Y_ij-Z_ij plane:
431
+ proj_Z_i_YZ = ((self.Z_i[:, None, :] * Y_ij).sum(dim=-1, keepdim=True) * Y_ij) + ((self.Z_i[:, None, :] * Z_ij).sum(dim=-1, keepdim=True) * Z_ij)
432
+ proj_Z_i_YZ_norm = proj_Z_i_YZ / (torch.norm(proj_Z_i_YZ, dim=-1, keepdim=True) + self.eps)
433
+ cos_buckle = (proj_Z_i_YZ_norm * -proj_Z_i_YZ_norm.transpose(1,0)).sum(dim=-1)
434
+ if self.clamp_pairwise_params:
435
+ cos_buckle = torch.clamp(cos_buckle, -1.0, 1.0)
436
+ cos_buckle = torch.clamp(cos_buckle, -1.0, 1.0)
437
+ B_ij = torch.acos(cos_buckle)
438
+
439
+ # Propeller: angle between local z_i and z_j within global Z_ij-X_ij plane:
440
+ proj_Z_i_ZX = ((self.Z_i[:, None, :] * Z_ij).sum(dim=-1, keepdim=True) * Z_ij) + ((self.Z_i[:, None, :] * X_ij).sum(dim=-1, keepdim=True) * X_ij)
441
+ proj_Z_i_ZX_norm = proj_Z_i_ZX / (torch.norm(proj_Z_i_ZX, dim=-1, keepdim=True) + self.eps)
442
+ cos_propeller = (proj_Z_i_ZX_norm * -proj_Z_i_ZX_norm.transpose(1,0)).sum(dim=-1)
443
+ if self.clamp_pairwise_params:
444
+ cos_propeller = torch.clamp(cos_propeller, -1.0, 1.0)
445
+ P_ij = torch.acos(cos_propeller)
446
+
447
+ # Local frame components for sidechains:
448
+ self.X_ij = X_ij
449
+ self.Y_ij = Y_ij
450
+ self.Z_ij = Z_ij
451
+
452
+ # pairwise base parameters:
453
+ self.O_ij = O_ij
454
+ self.B_ij = B_ij
455
+ self.P_ij = P_ij
456
+ self.bases_are_antiparallel = bases_are_antiparallel
457
+
458
+ def _compute_paired_bases(self):
459
+
460
+ # Compute baseline bp probability based on hydrogen bond count
461
+ bp_preds = torch.sigmoid(self.bp_hbond_coeff * (self.hbond_summation - (self.min_hbonds_for_bp - 1))) # offset by 1 for midpoint
462
+
463
+ # basepair-specific filters:
464
+ both_nucleic_filter = self.is_na[:,None] * self.is_na[None,:]
465
+
466
+ # Frame distance filter, already taken care of
467
+ # D_ij_filter = (self.D_ij_vec.norm(dim=-1) < self.base_geometry_limits['D_ij'])
468
+ # Rise between base-planes is within lower and upper bounds
469
+ # H_ij_filter = (self.H_ij.norm(dim=-1) > -self.base_geometry_limits['H_ij']) & (self.H_ij.norm(dim=-1) < self.base_geometry_limits['H_ij'])
470
+ H_ij_filter = (self.H_ij >= -self.base_geometry_limits['H_ij']) & (self.H_ij <= self.base_geometry_limits['H_ij'])
471
+ # H_ij_filter = (self.H_ij.T >= -self.base_geometry_limits['H_ij']) & (self.H_ij.T <= self.base_geometry_limits['H_ij'])
472
+ # Buckle between bases is either lower than lower bound or higher than upper bound (stay close to 0 or pi):
473
+ B_ij_filter = (self.B_ij <= (np.pi - self.base_geometry_limits['B_ij'])) | (self.B_ij >= self.base_geometry_limits['B_ij'])
474
+ # Propeller between bases is either lower than lower bound or higher than upper bound (stay close to 0 or pi):
475
+ P_ij_filter = (self.P_ij <= (np.pi - self.base_geometry_limits['P_ij'])) | (self.P_ij >= self.base_geometry_limits['P_ij'])
476
+
477
+
478
+ # combine for full basepair filter:
479
+ bp_geom_filter = torch.zeros(self.len_s, self.len_s, dtype=torch.bool)
480
+ bp_geom_filter[torch.outer(self.is_na, self.is_na)] = (H_ij_filter * B_ij_filter * P_ij_filter).flatten()
481
+ # bp_geom_filter[torch.outer(self.is_na, self.is_na)] = ( B_ij_filter * P_ij_filter).flatten()
482
+ # bp_geom_filter[torch.outer(self.is_na, self.is_na)] = (H_ij_filter * P_ij_filter).flatten()
483
+ # bp_geom_filter[torch.outer(self.is_na, self.is_na)] = (H_ij_filter * B_ij_filter ).flatten()
484
+ self.basepairs_ij = both_nucleic_filter * bp_geom_filter * bp_preds
485
+
486
+ def _compute_helical_params(self):
487
+
488
+ len_na = self.Z_i.shape[0] # Do I need this?
489
+ nucleic_frames = self.xyz[self.is_na, 1, :]
490
+ doublet_inds = [(i,j) for (i,j) in zip(range(0,len_na-1),range(1,len_na))]
491
+
492
+
493
+ Zm_i = torch.zeros_like(self.Z_i)
494
+ Zh_i = torch.zeros_like(self.Z_i)
495
+
496
+ # Local doublet step params
497
+ tilt_i = torch.zeros(len_na)
498
+ roll_i = torch.zeros(len_na)
499
+ twist_i = torch.zeros(len_na)
500
+ shift_i = torch.zeros(len_na)
501
+ slide_i = torch.zeros(len_na)
502
+ rise_i = torch.zeros(len_na)
503
+
504
+
505
+ # Local helical parameters
506
+ inclination_i = torch.zeros(len_na)
507
+ tip_i = torch.zeros(len_na)
508
+ helical_twist_i = torch.zeros(len_na)
509
+ x_disp_i = torch.zeros(len_na)
510
+ y_disp_i = torch.zeros(len_na)
511
+ helical_rise_i = torch.zeros(len_na)
512
+
513
+ # avg_factor = torch.zeros_like(self.Z_i[:,0])
514
+ avg_factor = torch.zeros(len_na)
515
+ for i,j in doublet_inds:
516
+ avg_factor[i] += 1.0
517
+ avg_factor[j] += 1.0
518
+
519
+
520
+ basepaired_inds = (self.basepairs_ij >= self.bp_val_cutoff).bool().nonzero(as_tuple=True)
521
+
522
+ pairwise_indices = list(zip(basepaired_inds[0].tolist(), basepaired_inds[1].tolist()))
523
+
524
+ # partner_info_dict = {i:{'partner_ind':[], 'orientation':[], 'num_hbonds':[], 'bp_score': []} for i in range(len_na)}
525
+ partner_info_dict = {i:{'partner_ind':[], 'orientation':[], 'num_hbonds':[], 'bp_score': []} for i in self.na_inds}
526
+
527
+ for i, j in pairwise_indices:
528
+ _i,_j = self.na_tensor_inds[i], self.na_tensor_inds[j]
529
+ partner_info_dict[i]['partner_ind'].append(j)
530
+ partner_info_dict[i]['orientation'].append(self.bases_are_antiparallel[_i,_j])
531
+ partner_info_dict[i]['num_hbonds'].append(self.hbond_summation[_i,_j])
532
+ partner_info_dict[i]['bp_score'].append(self.basepairs_ij[_i,_j])
533
+
534
+
535
+
536
+
537
+ # TO DO: sort partner_info_dict[i]['partner_ind'] list by: first by orientation, then by num_hbonds
538
+ # If we don't do the sorting, no need to compile these lists in the dict. Can just index directly from precomputed values.
539
+ # for i in partner_info_dict.keys():
540
+ for i_1, i_2 in doublet_inds:
541
+
542
+ partners_i_1 = [self.na_tensor_inds[_] for _ in partner_info_dict[self.na_inds[i_1]]['partner_ind']]
543
+ partners_i_2 = [self.na_tensor_inds[_] for _ in partner_info_dict[self.na_inds[i_2]]['partner_ind']]
544
+
545
+
546
+ # set_trace()
547
+ # j_1 = partners_i_1[0] # index-[0] is just a placeholder for later iteration
548
+ # j_2 = partners_i_2[0] # index-[0] is just a placeholder for later iteration
549
+ num_partners_i_1 = len(partners_i_1) # later change to be length of iterable
550
+ num_partners_i_2 = len(partners_i_2) # later change to be length of iterable
551
+ for j_1 in partners_i_1:
552
+ # _j_1 = self.na_tensor_inds[j_1]
553
+ for j_2 in partners_i_2:
554
+ X_1 = self.X_ij[i_1,j_1]
555
+ Y_1 = self.Y_ij[i_1,j_1]
556
+ X_2 = self.X_ij[i_2,j_2]
557
+ Y_2 = self.Y_ij[i_2,j_2]
558
+
559
+ Xp = X_2 + X_1
560
+ Xn = X_2 - X_1
561
+ Yp = Y_2 + Y_1
562
+ Yn = Y_2 - Y_1
563
+
564
+ M_12 = 0.5*((nucleic_frames[i_2]+nucleic_frames[j_2]) - (nucleic_frames[i_1]+nucleic_frames[j_1]))
565
+
566
+ Zm = torch.cross(Xp, Yp, dim=-1) / ((Xp.norm(dim=-1) * Yp.norm(dim=-1)) + self.eps)
567
+ Zh = torch.cross(Xn, Yn, dim=-1) / ((Xn.norm(dim=-1) * Yn.norm(dim=-1)) + self.eps)
568
+
569
+ Zm_i[i_1] += Zm / (avg_factor[i_1]+self.eps)
570
+ Zh_i[i_1] += Zh / (avg_factor[i_1]+self.eps)
571
+
572
+ Zm_i[i_2] += Zm / (avg_factor[i_2]+self.eps)
573
+ Zh_i[i_2] += Zh / (avg_factor[i_2]+self.eps)
574
+
575
+
576
+ tilt_ij = -torch.arcsin(torch.sum(Zm * X_1 , dim=-1))
577
+ roll_ij = torch.arcsin(torch.sum(Zm * Y_1 , dim=-1))
578
+ twist_ij = torch.arccos(torch.sum(torch.cross(X_1 , Zm, dim=-1) * torch.cross(X_2 , Zm, dim=-1), dim=-1))
579
+ shift_ij = torch.sum(M_12 * (Xp / (torch.norm(Xp, dim=-1)+self.eps)), dim=-1)
580
+ slide_ij = torch.sum(M_12 * (Yp / (torch.norm(Yp, dim=-1)+self.eps)), dim=-1)
581
+ rise_ij = torch.sum(M_12 * Zm , dim=-1)
582
+
583
+ inclination_ij = torch.arcsin(torch.sum(Zh * X_1 , dim=-1))
584
+ tip_ij = -torch.arcsin(torch.sum(Zh * Y_1 , dim=-1))
585
+ helical_twist_ij = -torch.arccos(torch.sum(torch.cross(X_1 , Zh, dim=-1) * torch.cross(X_2 , Zh, dim=-1), dim=-1))
586
+ x_disp_ij = torch.sum(M_12 * Xn / (torch.norm(Xn, dim=-1)+self.eps), dim=-1)
587
+ y_disp_ij = torch.sum(M_12 * Yn / (torch.norm(Yn, dim=-1)+self.eps), dim=-1)
588
+ helical_rise_ij = -torch.sum(M_12 * Zh, dim=-1)
589
+
590
+ # NEXT JUST ADD THESE PARAMS TO SOME PRE-INITIALIZED TENSOR AND DIVIDE BY AVG_FACTOR TO AVERAGE:
591
+ # For doublet position-1:
592
+ avg_factor[i_1] += 1.0
593
+ tilt_i[i_1] += tilt_ij
594
+ roll_i[i_1] += roll_ij
595
+ twist_i[i_1] += twist_ij
596
+ shift_i[i_1] += shift_ij
597
+ slide_i[i_1] += slide_ij
598
+ rise_i[i_1] += rise_ij
599
+ inclination_i[i_1] += inclination_ij
600
+ tip_i[i_1] += tip_ij
601
+ helical_twist_i[i_1] += helical_twist_ij
602
+ x_disp_i[i_1] += x_disp_ij
603
+ y_disp_i[i_1] += y_disp_ij
604
+ helical_rise_i[i_1] += helical_rise_ij
605
+
606
+ # For doublet position-2:
607
+ avg_factor[i_2] += 1.0
608
+ tilt_i[i_2] += tilt_ij
609
+ roll_i[i_2] += roll_ij
610
+ twist_i[i_2] += twist_ij
611
+ shift_i[i_2] += shift_ij
612
+ slide_i[i_2] += slide_ij
613
+ rise_i[i_2] += rise_ij
614
+ inclination_i[i_2] += inclination_ij
615
+ tip_i[i_2] += tip_ij
616
+ helical_twist_i[i_2] += helical_twist_ij
617
+ x_disp_i[i_2] += x_disp_ij
618
+ y_disp_i[i_2] += y_disp_ij
619
+ helical_rise_i[i_2] += helical_rise_ij
620
+
621
+
622
+ self.tilt_i = tilt_i / (avg_factor + self.eps)
623
+ self.roll_i = roll_i / (avg_factor + self.eps)
624
+ self.twist_i = twist_i / (avg_factor + self.eps)
625
+ self.shift_i = shift_i / (avg_factor + self.eps)
626
+ self.slide_i = slide_i / (avg_factor + self.eps)
627
+ self.rise_i = rise_i / (avg_factor + self.eps)
628
+ self.inclination_i = inclination_i / (avg_factor + self.eps)
629
+ self.tip_i = tip_i / (avg_factor + self.eps)
630
+ self.helical_twist_i = helical_twist_i / (avg_factor + self.eps)
631
+ self.x_disp_i = x_disp_i / (avg_factor + self.eps)
632
+ self.y_disp_i = y_disp_i / (avg_factor + self.eps)
633
+ self.helical_rise_i = helical_rise_i / (avg_factor + self.eps)
634
+
635
+ def _init_hb_chemdata(self):
636
+
637
+
638
+
639
+ # RESIDUE | DONORS | ACCEPTORS
640
+ self.hbond_atoms = {
641
+ "ALA": {"names":[ ],
642
+ "donor":[ ]},
643
+ "ARG": {"names":[" NH1"," NH2" ],
644
+ "donor":[ 1 , 1 ]},
645
+ "ASN": {"names":[" ND2", " OD1" ],
646
+ "donor":[ 1 , 0 ]},
647
+ "ASP": {"names":[" OD2", " OD1"," OD2" ],
648
+ "donor":[ 1 , 0 , 0 ]},
649
+ "CYS": {"names":[" SG " ],
650
+ "donor":[ 1 ]},
651
+ "GLN": {"names":[" NE2", " OE1" ],
652
+ "donor":[ 1 , 0 ]},
653
+ "GLU": {"names":[" OE2", " OE1"," OE2" ],
654
+ "donor":[ 1 , 0 , 0 ]},
655
+ "GLY": {"names":[ ],
656
+ "donor":[ ]},
657
+ "HIS": {"names":[" ND1"," NE2", " ND1"," NE2" ],
658
+ "donor":[ 1 , 1 , 0 , 0 ]},
659
+ "ILE": {"names":[ ],
660
+ "donor":[ ]},
661
+ "LEU": {"names":[ ],
662
+ "donor":[ ]},
663
+ "LYS": {"names":[" NZ " ],
664
+ "donor":[ 1 ]},
665
+ "MET": {"names":[ " SD " ],
666
+ "donor":[ 0 ]},
667
+ "PHE": {"names":[ ],
668
+ "donor":[ ]},
669
+ "PRO": {"names":[ ],
670
+ "donor":[ ]},
671
+ "SER": {"names":[" OG " ],
672
+ "donor":[ 1 ]},
673
+ "THR": {"names":[" OG1" ],
674
+ "donor":[ 1 ]},
675
+ "TRP": {"names":[ " NE1" ],
676
+ "donor":[ 0 ]},
677
+ "TYR": {"names":[" OH " ],
678
+ "donor":[ 1 ]},
679
+ "VAL": {"names":[ ],
680
+ "donor":[ ]},
681
+ "UNK": {"names":[ ],
682
+ "donor":[ ]},
683
+ "MAS": {"names":[ ],
684
+ "donor":[ ]},
685
+ " DA": {"names":[" N6 ", " N1 "," N3 "," N7 " ],
686
+ "donor":[ 1 , 0 , 0 , 0 ]},
687
+ " DG": {"names":[" N1 "," N2 "," N7 ", " O6 "," N1 "," N3 "," N7 " ],
688
+ "donor":[ 1 , 1 , 1 , 0 , 0 , 0 , 0 ]},
689
+ " DC": {"names":[" N4 "," N3 ", " O2 "," N3 " ],
690
+ "donor":[ 1 , 1 , 0 , 0 ]},
691
+ " DT": {"names":[" N3 ", " O2 "," O4 " ],
692
+ "donor":[ 1 , 0 , 0 ]},
693
+ " DX": {"names":[ ],
694
+ "donor":[ ]},
695
+ " RA": {"names":[" O2'"," N6 ", " N1 "," N3 "," N7 " ],
696
+ "donor":[ 1 , 1 , 0 , 0 , 0 ]},
697
+ " RG": {"names":[" O2'"," N1 "," N2 "," N7 ", " O6 "," N1 "," N3 "," N7 "],
698
+ "donor":[ 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 ]},
699
+ " RC": {"names":[" O2'"," N4 "," N3 ", " O2 "," N3 " ],
700
+ "donor":[ 1 , 1 , 1 , 0 , 0 ]},
701
+ " RU": {"names":[" O2'"," N3 ", " O2 "," O4 " ],
702
+ "donor":[ 1 , 1 , 0 , 0 ]},
703
+ " RX": {"names":[" O2'", ],
704
+ "donor":[ 1 , ]},
705
+ }
706
+
707
+
708
+
709
+ # define atoms behind all donors/acceptors/tip-atoms so that we can use them to draw a vector giving the direction of [rear-atoms] -> [tip-atoms]
710
+ self.rear_atoms = {
711
+ "ALA": {},
712
+ "ARG": {" NH1":[" CZ "], " NH2":[" CZ "],},
713
+ "ASN": {" OD1":[" CG "], " ND2":[" CG "],},
714
+ "ASP": {" OD1":[" CG "], " OD2":[" CG "],},
715
+ "CYS": {" SG ":[" CB "],},
716
+ "GLN": {" OE1":[" CD "], " NE2":[" CD "],},
717
+ "GLU": {" OE1":[" CD "], " OE2":[" CD "],},
718
+ "GLY": {},
719
+ "HIS": {" ND1":[" CG "," CE1"], " NE2":[" CD2"," CE1"],},
720
+ "ILE": {},
721
+ "LEU": {},
722
+ "LYS": {" NZ ":[" CE "],},
723
+ "MET": {" SD ":[" CG "," CE "],},
724
+ "PHE": {},
725
+ "PRO": {},
726
+ "SER": {" OG ":[" CB "],},
727
+ "THR": {" OG1":[" CB "],},
728
+ "TRP": {" NE1":[" CD1"," CE2"],},
729
+ "TYR": {" OH ":[" CZ "],},
730
+ "VAL": {},
731
+ "UNK": {},
732
+ "MAS": {},
733
+ " DA": {" N6 ":[" C6 ",], " N1 ":[" C2 "," C6 "], " N3 ":[" C2 "," C4 "], " N7 ":[" C5 "," C8 "],},
734
+ " DG": {" N1 ":[" C2 "," C6 "], " N2 ":[" C2 ",], " N7 ":[" C5 "," C8 "], " O6 ":[" C6 ",], " N3 ":[" C2 "," C4 "], " N7 ":[" C5 "," C8 "],},
735
+ " DC": {" N4 ":[" C4 ",], " N3 ":[" C2 "," C5 "], " O2 ":[" C2 ",],},
736
+ " DT": {" N3 ":[" C2 "," C4 "], " O2 ":[" C2 ",], " O4 ":[" C4 ",],},
737
+ " DX": {},
738
+ " RA": {" O2'":[" C2'",], " N6 ":[" C6 ",], " N1 ":[" C2 "," C6 "], " N3 ":[" C2 "," C4 "], " N7 ":[" C5 "," C8 "],},
739
+ " RG": {" O2'":[" C2'",], " N1 ":[" C2 "," C6 "], " N2 ":[" C2 ",], " N7 ":[" C5 "," C8 "], " O6 ":[" C6 ",], " N3 ":[" C2 "," C4 "], " N7 ":[" C5 "," C8 "],},
740
+ " RC": {" O2'":[" C2'",], " N4 ":[" C4 ",], " N3 ":[" C2 "," C5 "], " O2 ":[" C2 ",],},
741
+ " RU": {" O2'":[" C2'",], " N3 ":[" C2 "," C4 "], " O2 ":[" C2 ",], " O4 ":[" C4 ",],},
742
+ " RX": {" O2'":[" C2'",], },
743
+ }
744
+
745
+
746
+
747
+ self.ideal_angle_dict = {
748
+ 'O': {
749
+ 1: 109.5*(np.pi/180),
750
+ 2: 180.0*(np.pi/180)},
751
+ 'N': {
752
+ 1: 120.0*(np.pi/180),
753
+ 2: 180.0*(np.pi/180)},
754
+ 'S': { # TO DO: CHECK IF BOND ANGLES ARE CORRECT!
755
+ 1: 109.5*(np.pi/180),
756
+ 2: 180.0*(np.pi/180)},
757
+ 'P': { # TO DO: CHECK IF BOND ANGLES ARE CORRECT!
758
+ 1: 120.0*(np.pi/180),
759
+ 2: 180.0*(np.pi/180)},
760
+ }
761
+
762
+
763
+ def _init_nuc_chemdata(self):
764
+
765
+ self.nuc_resi_3letter = [" DA"," DG"," DC"," DT"," RA"," RG"," RC"," RU"]
766
+
767
+ # Vectors between atom pairs that define each interaction edge of each base
768
+ self.vec_atom_dict = {
769
+ " DA": {"W_start":" N1 ","W_stop":" N6 ", "H_start":" N7 ","H_stop":" N6 ", "S_start":" C1'","S_stop":" N3 ", "B_start":" C1'","B_stop":" N9 " },
770
+ " DG": {"W_start":" N1 ","W_stop":" O6 ", "H_start":" N7 ","H_stop":" O6 ", "S_start":" C1'","S_stop":" N3 ", "B_start":" C1'","B_stop":" N9 " },
771
+ " DC": {"W_start":" N3 ","W_stop":" N4 ", "H_start":" C5 ","H_stop":" N4 ", "S_start":" C1'","S_stop":" O2 ", "B_start":" C1'","B_stop":" N1 " },
772
+ " DT": {"W_start":" N3 ","W_stop":" O4 ", "H_start":" C5 ","H_stop":" O4 ", "S_start":" C1'","S_stop":" O2 ", "B_start":" C1'","B_stop":" N1 " },
773
+ " RA": {"W_start":" N1 ","W_stop":" N6 ", "H_start":" N7 ","H_stop":" N6 ", "S_start":" C1'","S_stop":" N3 ", "B_start":" C1'","B_stop":" N9 " },
774
+ " RG": {"W_start":" N1 ","W_stop":" O6 ", "H_start":" N7 ","H_stop":" O6 ", "S_start":" C1'","S_stop":" N3 ", "B_start":" C1'","B_stop":" N9 " },
775
+ " RC": {"W_start":" N3 ","W_stop":" N4 ", "H_start":" C5 ","H_stop":" N4 ", "S_start":" C1'","S_stop":" O2 ", "B_start":" C1'","B_stop":" N1 " },
776
+ " RU": {"W_start":" N3 ","W_stop":" O4 ", "H_start":" C5 ","H_stop":" O4 ", "S_start":" C1'","S_stop":" O2 ", "B_start":" C1'","B_stop":" N1 " },
777
+ }
778
+
779
+ self.vec_atom_inds = {s_i: {k_ij: HB_data.aa2long[HB_data.aa2num[s_i]].index(a_ij) for k_ij, a_ij in self.vec_atom_dict[s_i].items() } for s_i in self.nuc_resi_3letter}
780
+
781
+ self.edge_to_ind = {'W':0 , 'H':1 , 'S':2 ,'B':3}
782
+ self.ring_atom_list = [" N1 "," C2 "," N3 "," C4 "," C6 "," C5 "]
783
+ self.ring_atom_inds = {s_i: [HB_data.aa2long[HB_data.aa2num[s_i]].index(a_ij) for a_ij in self.ring_atom_list ] for s_i in self.nuc_resi_3letter}
784
+
785
+ def convert_mpnn_representation(S, X, X_m, rna_mask):
786
+ """
787
+ Given a sequence, atom coordinates, and atom mask in the NA-MPNN format,
788
+ output the sequence, atom coordinates, and atom mask in an RFaa-like format.
789
+
790
+ Arguments:
791
+ S (np.int32 np.ndarray): an L length array representing the sequence of
792
+ the biomolecular assembly.
793
+ X (np.float32 np.ndarray): an L x num_atom_types x 3 array representing
794
+ the coordinates of each atom for each residue in the biomolecular
795
+ assembly.
796
+ X_m (np.int32 np.ndarray): an L x num_atom_types x 3 array mask that is
797
+ 1 if the corresponding atom in the specified residue was loaded
798
+ and 0 otherwise.
799
+ rna_mask (np.int32 np.ndarray): an L length array mask representing
800
+ whether the residue is an RNA residue.
801
+
802
+ Returns:
803
+ S_rfaa (np.int32 np.ndarray): an L length array representing the
804
+ sequence of the biomolecular assembly in the RFaa format.
805
+ X_rfaa (np.float32 np.ndarray): an L x num_atom_types x 3 array
806
+ representing the coordinates of each atom for each residue in the
807
+ biomolecular assembly in the RFaa format.
808
+ """
809
+ atom_idx_to_name = {atom_idx:atom_name for (atom_name, atom_idx) in pdb_dataset.atom_dict.items()}
810
+
811
+ # Convert the sequence to the RFaa format, being aware of the possible
812
+ # shared token representation of NA-MPNN.
813
+ S_rfaa = []
814
+ for i in range(S.shape[0]):
815
+ restype_int = S[i]
816
+
817
+ restype = pdb_dataset.int_to_restype[restype_int]
818
+
819
+ if rna_mask[i]:
820
+ # Handle the case when shared nucleic acid tokens are used. If
821
+ # shared tokens are not used, the RNA tokens still need to be
822
+ # converted to the RFaa notation.
823
+ if restype == "DA" or restype == "A":
824
+ restype_rfaa = "RA"
825
+ elif restype == "DC" or restype == "C":
826
+ restype_rfaa = "RC"
827
+ elif restype == "DG" or restype == "G":
828
+ restype_rfaa = "RG"
829
+ elif restype == "DT" or restype == "U":
830
+ restype_rfaa = "RU"
831
+ elif restype == "DX" or restype == "RX":
832
+ restype_rfaa = "RX"
833
+ else:
834
+ raise Exception("RNA restype not recognized.")
835
+ else:
836
+ restype_rfaa = restype
837
+
838
+ restype_int_rfaa = HB_data.aa2num_stripped[restype_rfaa]
839
+
840
+ S_rfaa.append(restype_int_rfaa)
841
+
842
+ S_rfaa = np.array(S_rfaa, dtype = np.int64)
843
+
844
+ # Convert the atom coordinates to the RFaa format.
845
+ X_rfaa = np.zeros((X.shape[0], HB_data.NTOTAL, 3), dtype = np.float32)
846
+ for i in range(X.shape[0]):
847
+ restype_int_rfaa = S_rfaa[i]
848
+ for atom_idx in range(X.shape[1]):
849
+ if X_m[i, atom_idx] == 1:
850
+ atom_type = atom_idx_to_name[atom_idx]
851
+
852
+ # Don't load any atoms beyond backbone for UNK, DX, RX.
853
+ if (HB_data.num2aa[restype_int_rfaa] in ["UNK", " DX", " RX"]) and \
854
+ (atom_type not in HB_data.aa2long_stripped[restype_int_rfaa]):
855
+ continue
856
+
857
+ # There are rare cases in the PDB where a DNA/RNA hybrid chain
858
+ # is mislabeled as DNA. In these cases, the data processing
859
+ # pipeline labels RNA residues as DNA residues, and there is
860
+ # an error with transfering the O2' atom into the RFaa format.
861
+ if (HB_data.num2aa[restype_int_rfaa] in [" DA", " DC", " DG", " DT"]) and \
862
+ (atom_type == "O2'"):
863
+ continue
864
+
865
+ # RFaa does not represent the OXT atom type.
866
+ if atom_type == "OXT":
867
+ continue
868
+
869
+ # Write the atom coordinates to the RFaa format.
870
+ atom_idx_rfaa = HB_data.aa2long_stripped[restype_int_rfaa].index(atom_type)
871
+ X_rfaa[i, atom_idx_rfaa] = X[i, atom_idx]
872
+
873
+ return S_rfaa, X_rfaa
874
+
875
+ def get_base_pair_mask_and_index(S, X, X_m, rna_mask):
876
+ """
877
+ Given a sequence, atom coordinates, and atom mask, compute the base pairing
878
+ residues and the canonical base pairing residues (represented as a mask
879
+ and index of the base pairing partner).
880
+
881
+ Arguments:
882
+ S (np.int32 np.ndarray): an L length array representing the sequence of
883
+ the biomolecular assembly.
884
+ X (np.float32 np.ndarray): an L x num_atom_types x 3 array representing
885
+ the coordinates of each atom for each residue in the biomolecular
886
+ assembly.
887
+ X_m (np.int32 np.ndarray): an L x num_atom_types x 3 array mask that is
888
+ 1 if the corresponding atom in the specified residue was loaded
889
+ and 0 otherwise.
890
+ rna_mask (np.int32 np.ndarray): an L length array mask representing
891
+ whether the residue is an RNA residue.
892
+
893
+ Returns:
894
+ base_pair_mask (np.int32 np.ndarray): an L length array mask that is
895
+ 1 if the corresponding residue is involved in a base pair
896
+ interaction and 0 otherwise.
897
+ base_pair_index (np.int64 np.ndarray): an L length array that
898
+ represents the index of the partner residue in a base pairing
899
+ interaction. For residues not in a base pairing interaction,
900
+ defined as 0, but it is necessary to the base_pair_mask in
901
+ conjunction.
902
+ canonical_base_pair_mask (np.int32 np.ndarray): similar to
903
+ base_pair_mask, but limited to positions that make canonical base
904
+ pairing interactions.
905
+ canonical_base_pair_index (np.int64 np.ndarray): similar to
906
+ base_pair_index, but limited to positions that make canonical base
907
+ pairing interactions.
908
+ """
909
+ # Convert to the representation needed for the HB_data object.
910
+ S_rfaa, X_rfaa = convert_mpnn_representation(S, X, X_m, rna_mask)
911
+
912
+ hb_data = HB_data(torch.tensor(S_rfaa),
913
+ torch.tensor(X_rfaa),
914
+ compute_paired_bases=True,
915
+ compute_helical_params=True
916
+ )
917
+ # basepairs_ij is only created if there is non-DX/RX nucleic acids in the
918
+ # structure.
919
+ if hb_data.is_na.sum() > 0:
920
+ base_pairs_prob = hb_data.basepairs_ij.detach().cpu().numpy()
921
+ base_pairs_binary = (base_pairs_prob > 0.5).astype(np.int32)
922
+
923
+ # Only consider base pairing interactions that have one partner.
924
+ base_pair_mask = (np.sum(base_pairs_binary, axis = -1) == 1).astype(np.int32)
925
+ base_pair_index = np.argmax(base_pairs_binary, axis = -1).astype(np.int64)
926
+ else:
927
+ base_pair_mask = np.zeros(S_rfaa.shape[0], dtype = np.int32)
928
+ base_pair_index = np.zeros(S_rfaa.shape[0], dtype = np.int64)
929
+
930
+ # Base pair mask needs to be updated so that the base pairing partner
931
+ # also exists.
932
+ base_pair_mask = base_pair_mask * base_pair_mask[base_pair_index]
933
+
934
+ # Make sure to update the base pair index using the base pair mask.
935
+ base_pair_index = base_pair_index * base_pair_mask
936
+
937
+ # Create the canonical base pair mask and index, removing any base pairing
938
+ # interactions with non-canonical sequences.
939
+ canonical_base_pair_mask = np.copy(base_pair_mask)
940
+ canonical_base_pair_index = np.copy(base_pair_index)
941
+ for i in range(len(S)):
942
+ if base_pair_mask[i] == 1:
943
+ restype_i = S[i]
944
+ restype_j = S[base_pair_index[i]]
945
+ if (restype_i, restype_j) not in pdb_dataset.na_canonical_base_pair_ints:
946
+ canonical_base_pair_mask[i] = 0
947
+ canonical_base_pair_mask[base_pair_index[i]] = 0
948
+
949
+ # Make sure to update the canonical base pair index using the canonical base
950
+ # pair mask.
951
+ canonical_base_pair_index = canonical_base_pair_index * canonical_base_pair_mask
952
+
953
+ return base_pair_mask, base_pair_index, canonical_base_pair_mask, canonical_base_pair_index
954
+
955
+ # Get nearest neighbors
956
+ def get_nearest_interface_neighbors_to_res_i(X, protein_mask, na_mask, i, eps = 1E-6):
957
+ if protein_mask[i] == 1:
958
+ mask = na_mask
959
+ elif na_mask[i] == 1:
960
+ mask = protein_mask
961
+ dX = X - X[i]
962
+ D = mask * torch.sqrt(torch.sum(dX ** 2, 1) + eps)
963
+ D_max, _ = torch.max(D, -1, keepdim=True)
964
+ D_adjust = D + (1. - mask) * (D_max + eps)
965
+ D_neighbors, E_idx = torch.topk(D_adjust, np.minimum(num_neighbors, X.shape[0]), dim=-1, largest=False)
966
+ return E_idx
967
+
968
+ def get_interface_masks(X, X_m, protein_mask, dna_mask, rna_mask):
969
+ L = X.shape[0]
970
+ na_mask = dna_mask + rna_mask #[L]
971
+
972
+ interface_mask = np.zeros(L, dtype = np.int32)
973
+
974
+ Ca = X[:,pdb_dataset.atom_dict["CA"],:]
975
+ na_ref_atom = X[:,pdb_dataset.atom_dict[params["NA_REF_ATOM"]],:]
976
+
977
+ side_chain_interface_mask = np.zeros(L, dtype = np.int32)
978
+ nearest_protein_side_chain_index = np.zeros(L, dtype = np.int64)
979
+ for i in range(L):
980
+ nearest_neighbor_idx = get_nearest_interface_neighbors_to_res_i(torch.tensor(Ca + na_ref_atom), torch.tensor(protein_mask), torch.tensor(na_mask), i)
981
+ nearest_protein_side_chain_distance = None
982
+ for j in nearest_neighbor_idx:
983
+ if not (na_mask[i] == 1 or na_mask[j] == 1):
984
+ continue
985
+
986
+ res_i_X = X[i] #[N,3]
987
+ res_i_X_m = X_m[i] #[N]
988
+
989
+ res_j_X = X[j] #[N,3]
990
+ res_j_X_m = X_m[j] #[N]
991
+
992
+ # Compute the per-atom pairwise distance.
993
+ dX = res_i_X[:,None,:] - res_j_X[None,:,:] #[N,N,3]
994
+ pairwise_atom_distances = np.sqrt(np.sum(dX ** 2, axis = -1)) #[N,N]
995
+
996
+ # Mask out pairwise distances for atoms that do not exist.
997
+ X_m_pairwise = res_i_X_m[:,None] * res_j_X_m[None,:] #[N,N]
998
+
999
+ min_distance = np.min(pairwise_atom_distances[(X_m_pairwise == 1)])
1000
+ if min_distance < interface_distance_cutoff:
1001
+ if (protein_mask[i] == 1 and na_mask[j] == 1) or (protein_mask[j] == 1 and na_mask[i] == 1):
1002
+ interface_mask[i] = 1
1003
+ interface_mask[j] = 1
1004
+
1005
+ X_m_side_chain_pairwise = X_m_pairwise * side_chain_pairwise_mask
1006
+
1007
+ if np.count_nonzero(X_m_side_chain_pairwise) > 0:
1008
+ min_side_chain_distance = np.min(pairwise_atom_distances[(X_m_side_chain_pairwise == 1)])
1009
+ if min_side_chain_distance < interface_distance_cutoff:
1010
+ if (protein_mask[i] == 1 and na_mask[j] == 1) or (protein_mask[j] == 1 and na_mask[i] == 1):
1011
+ side_chain_interface_mask[i] = 1
1012
+ side_chain_interface_mask[j] = 1
1013
+
1014
+ if protein_mask[j] == 1 and \
1015
+ (nearest_protein_side_chain_distance == None or \
1016
+ min_side_chain_distance < nearest_protein_side_chain_distance):
1017
+ nearest_protein_side_chain_index[i] = j
1018
+ nearest_protein_side_chain_distance = min_side_chain_distance
1019
+
1020
+ return interface_mask, side_chain_interface_mask, nearest_protein_side_chain_index
1021
+
1022
+ if __name__ == "__main__":
1023
+ # Load the command line arguments.
1024
+ input_csv_path = sys.argv[1]
1025
+ output_directory = sys.argv[2]
1026
+ modulo = int(sys.argv[3])
1027
+ remainder = int(sys.argv[4])
1028
+
1029
+ # Load the csv, containing the structure path and pwm paths.
1030
+ df = pd.read_csv(input_csv_path)
1031
+
1032
+ # Output directory file paths.
1033
+ sequences_directory = os.path.join(output_directory, "sequences")
1034
+ asmb_lengths_directory = os.path.join(output_directory, "asmb_lengths")
1035
+ asmb_interface_masks_directory = os.path.join(output_directory, "asmb_interface_masks")
1036
+ asmb_side_chain_interface_masks_directory = os.path.join(output_directory, "asmb_side_chain_interface_masks")
1037
+ asmb_nearest_protein_side_chain_index_directory = os.path.join(output_directory, "asmb_nearest_protein_side_chain_index")
1038
+ asmb_base_pair_masks_directory = os.path.join(output_directory, "asmb_base_pair_masks")
1039
+ asmb_base_pair_index_directory = os.path.join(output_directory, "asmb_base_pair_index")
1040
+ asmb_canonical_base_pair_masks_directory = os.path.join(output_directory, "asmb_canonical_base_pair_masks")
1041
+ asmb_canonical_base_pair_index_directory = os.path.join(output_directory, "asmb_canonical_base_pair_index")
1042
+ bad_directory = os.path.join(output_directory, "bad")
1043
+
1044
+ # Make output directories.
1045
+ os.makedirs(sequences_directory, exist_ok = True)
1046
+ os.makedirs(asmb_lengths_directory, exist_ok = True)
1047
+ os.makedirs(asmb_interface_masks_directory, exist_ok = True)
1048
+ os.makedirs(asmb_side_chain_interface_masks_directory, exist_ok = True)
1049
+ os.makedirs(asmb_nearest_protein_side_chain_index_directory, exist_ok = True)
1050
+ os.makedirs(asmb_base_pair_masks_directory, exist_ok = True)
1051
+ os.makedirs(asmb_base_pair_index_directory, exist_ok = True)
1052
+ os.makedirs(asmb_canonical_base_pair_masks_directory, exist_ok = True)
1053
+ os.makedirs(asmb_canonical_base_pair_index_directory, exist_ok = True)
1054
+ os.makedirs(bad_directory, exist_ok = True)
1055
+
1056
+ # Preprocess data.
1057
+ for iii in range(len(df)):
1058
+ if (iii + 1) % modulo != remainder:
1059
+ continue
1060
+
1061
+ example_dict = df.iloc[iii].to_dict()
1062
+
1063
+ structure_file_name = os.path.basename(example_dict["structure_path"])
1064
+ # Handle GZipped files.
1065
+ if structure_file_name.endswith(".gz"):
1066
+ structure_name = os.path.splitext(os.path.splitext(structure_file_name)[0])[0]
1067
+ else:
1068
+ structure_name = os.path.splitext(structure_file_name)[0]
1069
+
1070
+ sequences_path = os.path.join(sequences_directory, structure_name + ".csv")
1071
+ asmb_lengths_path = os.path.join(asmb_lengths_directory, structure_name + ".npy")
1072
+ asmb_interface_masks_path = os.path.join(asmb_interface_masks_directory, structure_name + ".npy")
1073
+ asmb_side_chain_interface_masks_path = os.path.join(asmb_side_chain_interface_masks_directory, structure_name + ".npy")
1074
+ asmb_nearest_protein_side_chain_index_path = os.path.join(asmb_nearest_protein_side_chain_index_directory, structure_name + ".npy")
1075
+ asmb_base_pair_masks_path = os.path.join(asmb_base_pair_masks_directory, structure_name + ".npy")
1076
+ asmb_base_pair_index_path = os.path.join(asmb_base_pair_index_directory, structure_name + ".npy")
1077
+ asmb_canonical_base_pair_masks_path = os.path.join(asmb_canonical_base_pair_masks_directory, structure_name + ".npy")
1078
+ asmb_canonical_base_pair_index_path = os.path.join(asmb_canonical_base_pair_index_directory, structure_name + ".npy")
1079
+ bad_path = os.path.join(bad_directory, structure_name + ".txt")
1080
+
1081
+ try:
1082
+ assemblies, chain_sequences = pdb_dataset.load_for_structure_preprocessing(example_dict)
1083
+ except Exception as e:
1084
+ write_text_file(bad_path, str(e))
1085
+ continue
1086
+
1087
+ if assemblies == "pass" or (len(assemblies) == 0):
1088
+ write_text_file(bad_path, "cifutils_failed_to_load_assemblies")
1089
+ continue
1090
+
1091
+ asmb_lengths_dict = {}
1092
+ asmb_interface_masks_dict = {}
1093
+ asmb_side_chain_interface_masks_dict = {}
1094
+ asmb_nearest_protein_side_chain_index_dict = {}
1095
+ asmb_base_pair_masks_dict = {}
1096
+ asmb_base_pair_index_dict = {}
1097
+ asmb_canonical_base_pair_masks_dict = {}
1098
+ asmb_canonical_base_pair_index_dict = {}
1099
+ missing_na_count = 0
1100
+ for (assembly_id, out_dict) in assemblies:
1101
+ # Filter out assemblies with no resolved/occupied nucleic acids.
1102
+ if (out_dict["dna_L"] == 0) and (out_dict["rna_L"] == 0):
1103
+ missing_na_count += 1
1104
+ continue
1105
+
1106
+ # Get the base pair mask and index. If the sequence longer than the
1107
+ # normal batch size for MPNN, then the base pair mask and index will
1108
+ # be empty.
1109
+ if out_dict["S"].shape[0] > residue_cutoff:
1110
+ base_pair_mask = np.zeros(out_dict["S"].shape, dtype = np.int32)
1111
+ base_pair_index = np.zeros(out_dict["S"].shape, dtype = np.int64)
1112
+ canonical_base_pair_mask = np.zeros(out_dict["S"].shape, dtype = np.int32)
1113
+ canonical_base_pair_index = np.zeros(out_dict["S"].shape, dtype = np.int64)
1114
+ else:
1115
+ base_pair_mask, base_pair_index, canonical_base_pair_mask, canonical_base_pair_index = \
1116
+ get_base_pair_mask_and_index(out_dict["S"],
1117
+ out_dict["X"],
1118
+ out_dict["X_m"],
1119
+ out_dict["rna_mask"])
1120
+
1121
+ # Get the interface masks.
1122
+ interface_mask, side_chain_interface_mask, nearest_protein_side_chain_index = \
1123
+ get_interface_masks(out_dict["X"],
1124
+ out_dict["X_m"],
1125
+ out_dict["protein_mask"],
1126
+ out_dict["dna_mask"],
1127
+ out_dict["rna_mask"])
1128
+
1129
+ # Save the per-assembly data.
1130
+ asmb_lengths_dict[assembly_id] = (out_dict["macromolecule_L"], out_dict["protein_L"], out_dict["dna_L"], out_dict["rna_L"])
1131
+ asmb_interface_masks_dict[assembly_id] = interface_mask
1132
+ asmb_side_chain_interface_masks_dict[assembly_id] = side_chain_interface_mask
1133
+ asmb_nearest_protein_side_chain_index_dict[assembly_id] = nearest_protein_side_chain_index
1134
+ asmb_base_pair_masks_dict[assembly_id] = base_pair_mask
1135
+ asmb_base_pair_index_dict[assembly_id] = base_pair_index
1136
+ asmb_canonical_base_pair_masks_dict[assembly_id] = canonical_base_pair_mask
1137
+ asmb_canonical_base_pair_index_dict[assembly_id] = canonical_base_pair_index
1138
+
1139
+ if len(list(asmb_lengths_dict)) > 0:
1140
+ chain_sequences_lines = ["chain_id,chain_type,sequence"]
1141
+ for chain_sequence_line in chain_sequences:
1142
+ chain_sequence_line = tuple(map(lambda x: "" if x is None else x, chain_sequence_line))
1143
+ chain_sequences_lines.append(",".join(chain_sequence_line))
1144
+ chain_sequences_str = "\n".join(chain_sequences_lines)
1145
+ write_text_file(sequences_path, chain_sequences_str)
1146
+
1147
+ np.save(asmb_lengths_path, asmb_lengths_dict)
1148
+ np.save(asmb_interface_masks_path, asmb_interface_masks_dict)
1149
+ np.save(asmb_side_chain_interface_masks_path, asmb_side_chain_interface_masks_dict)
1150
+ np.save(asmb_nearest_protein_side_chain_index_path, asmb_nearest_protein_side_chain_index_dict)
1151
+ np.save(asmb_base_pair_masks_path, asmb_base_pair_masks_dict)
1152
+ np.save(asmb_base_pair_index_path, asmb_base_pair_index_dict)
1153
+ np.save(asmb_canonical_base_pair_masks_path, asmb_canonical_base_pair_masks_dict)
1154
+ np.save(asmb_canonical_base_pair_index_path, asmb_canonical_base_pair_index_dict)
1155
+ elif missing_na_count == len(assemblies):
1156
+ write_text_file(bad_path, "all_assemblies_no_resolved_and_occupied_nucleic_acids")
1157
+ continue
1158
+ else:
1159
+ write_text_file(bad_path, "all_assemblies_failed")
1160
+ continue
scripts/preprocess_dataset.sh ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ #SBATCH -p cpu
3
+ #SBATCH --mem=32g
4
+ #SBATCH --ntasks=1
5
+ #SBATCH --cpus-per-task=1
6
+ #SBATCH -t 0-02:00:00
7
+
8
+ input_csv_path=$1
9
+ output_directory=$2
10
+ modulo=$((SLURM_ARRAY_TASK_MAX + 1))
11
+ remainder=$SLURM_ARRAY_TASK_ID
12
+
13
+ apptainer exec /software/containers/users/akubaney/mpnn.sif python ./preprocess_dataset.py $input_csv_path $output_directory $modulo $remainder
splits/design_evaluation_pseudoknot_test.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "1drz",
3
+ "2m8k",
4
+ "2miy",
5
+ "3q3z",
6
+ "4oqu",
7
+ "4plx",
8
+ "4znp",
9
+ "7kd1",
10
+ "7kga",
11
+ "7qr4"
12
+ ]
splits/design_evaluation_rna_monomer_test.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "1a9l",
3
+ "1bvj",
4
+ "1d0u",
5
+ "1fmn",
6
+ "1k6g",
7
+ "1kpy",
8
+ "1kpz",
9
+ "1ldz",
10
+ "1rfr",
11
+ "1u3k",
12
+ "1y26",
13
+ "2a9l",
14
+ "2fdt",
15
+ "2ldz",
16
+ "2m12",
17
+ "2m8k",
18
+ "2miy",
19
+ "2n6w",
20
+ "2n7x",
21
+ "2nbx",
22
+ "2rvo",
23
+ "3la5",
24
+ "3sd3",
25
+ "4l81",
26
+ "4lvv",
27
+ "4lvw",
28
+ "4lvx",
29
+ "4lvy",
30
+ "4lvz",
31
+ "4lw0",
32
+ "4lx5",
33
+ "4lx6",
34
+ "4oqu",
35
+ "4qk9",
36
+ "4tzx",
37
+ "4tzy",
38
+ "4xnr",
39
+ "5m0h",
40
+ "5swe",
41
+ "5tpy",
42
+ "5uza",
43
+ "5v16",
44
+ "5v17",
45
+ "6fz0",
46
+ "6hag",
47
+ "6q57",
48
+ "6ugi",
49
+ "6ugj",
50
+ "6xb7",
51
+ "7kd1",
52
+ "7lyf",
53
+ "7rwr",
54
+ "7u4a",
55
+ "7uga",
56
+ "7umd",
57
+ "7wia",
58
+ "8cq1",
59
+ "8tjq",
60
+ "8tjv",
61
+ "8tjx",
62
+ "8upy",
63
+ "9blm",
64
+ "9cxf"
65
+ ]
splits/design_test.json ADDED
@@ -0,0 +1,1375 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "115d",
3
+ "139d",
4
+ "1a9l",
5
+ "1afx",
6
+ "1ajl",
7
+ "1ajt",
8
+ "1au7",
9
+ "1aul",
10
+ "1ax6",
11
+ "1b23",
12
+ "1b72",
13
+ "1bce",
14
+ "1bdh",
15
+ "1bdi",
16
+ "1bn9",
17
+ "1bp7",
18
+ "1br3",
19
+ "1bvj",
20
+ "1c9s",
21
+ "1cez",
22
+ "1cjg",
23
+ "1cvx",
24
+ "1cvy",
25
+ "1d0t",
26
+ "1d0u",
27
+ "1d83",
28
+ "1d8y",
29
+ "1da4",
30
+ "1da5",
31
+ "1dgc",
32
+ "1dgo",
33
+ "1dh3",
34
+ "1dk6",
35
+ "1dk9",
36
+ "1dnk",
37
+ "1drz",
38
+ "1duh",
39
+ "1dul",
40
+ "1duq",
41
+ "1ea4",
42
+ "1efa",
43
+ "1elh",
44
+ "1emq",
45
+ "1exy",
46
+ "1ezn",
47
+ "1f2i",
48
+ "1f9l",
49
+ "1flo",
50
+ "1fmn",
51
+ "1fqp",
52
+ "1h38",
53
+ "1hf0",
54
+ "1hq1",
55
+ "1huz",
56
+ "1hys",
57
+ "1i34",
58
+ "1i3j",
59
+ "1ibl",
60
+ "1ibm",
61
+ "1idx",
62
+ "1ii1",
63
+ "1ikk",
64
+ "1j46",
65
+ "1j47",
66
+ "1j5k",
67
+ "1j9h",
68
+ "1jbr",
69
+ "1jfs",
70
+ "1jft",
71
+ "1jjp",
72
+ "1jkp",
73
+ "1jkq",
74
+ "1jox",
75
+ "1jp0",
76
+ "1jtl",
77
+ "1juu",
78
+ "1jve",
79
+ "1k2g",
80
+ "1k2z",
81
+ "1k6g",
82
+ "1kpy",
83
+ "1kpz",
84
+ "1kq2",
85
+ "1ksb",
86
+ "1l1m",
87
+ "1l2b",
88
+ "1ldz",
89
+ "1lfu",
90
+ "1lmv",
91
+ "1lnt",
92
+ "1lpw",
93
+ "1lvs",
94
+ "1m3h",
95
+ "1m5x",
96
+ "1m6x",
97
+ "1mji",
98
+ "1mnm",
99
+ "1mzp",
100
+ "1n4e",
101
+ "1n53",
102
+ "1na2",
103
+ "1ngm",
104
+ "1ngo",
105
+ "1ngu",
106
+ "1njx",
107
+ "1nyd",
108
+ "1o3q",
109
+ "1o4x",
110
+ "1old",
111
+ "1p1y",
112
+ "1p4e",
113
+ "1p7d",
114
+ "1pgl",
115
+ "1ph5",
116
+ "1ph7",
117
+ "1pp7",
118
+ "1pp8",
119
+ "1puf",
120
+ "1pyi",
121
+ "1pyj",
122
+ "1qln",
123
+ "1qp0",
124
+ "1qp4",
125
+ "1qp7",
126
+ "1qpz",
127
+ "1qqa",
128
+ "1qqb",
129
+ "1qum",
130
+ "1r8d",
131
+ "1rfr",
132
+ "1rio",
133
+ "1rng",
134
+ "1s0v",
135
+ "1s76",
136
+ "1sds",
137
+ "1sj3",
138
+ "1sj4",
139
+ "1sjf",
140
+ "1sks",
141
+ "1skw",
142
+ "1sl0",
143
+ "1sl1",
144
+ "1sl2",
145
+ "1sm5",
146
+ "1szy",
147
+ "1t4i",
148
+ "1t9i",
149
+ "1t9j",
150
+ "1tez",
151
+ "1tut",
152
+ "1u0b",
153
+ "1u3e",
154
+ "1u3k",
155
+ "1u4b",
156
+ "1vbx",
157
+ "1vby",
158
+ "1vbz",
159
+ "1vc0",
160
+ "1vc5",
161
+ "1vc6",
162
+ "1vj4",
163
+ "1vpw",
164
+ "1w0u",
165
+ "1wd0",
166
+ "1wvl",
167
+ "1x9c",
168
+ "1x9k",
169
+ "1x9n",
170
+ "1xs9",
171
+ "1y26",
172
+ "1yui",
173
+ "1yuj",
174
+ "1yvp",
175
+ "1yz9",
176
+ "1z1c",
177
+ "1z8v",
178
+ "1zdi",
179
+ "1zft",
180
+ "1zfv",
181
+ "1zfx",
182
+ "1zje",
183
+ "1zjf",
184
+ "1zjg",
185
+ "1zx4",
186
+ "1zx7",
187
+ "1zyf",
188
+ "1zyg",
189
+ "1zyh",
190
+ "1zz5",
191
+ "272d",
192
+ "280d",
193
+ "284d",
194
+ "2a04",
195
+ "2a8v",
196
+ "2a9l",
197
+ "2aor",
198
+ "2aqy",
199
+ "2b2e",
200
+ "2b2g",
201
+ "2b6g",
202
+ "2b7g",
203
+ "2bcu",
204
+ "2bcy",
205
+ "2bcz",
206
+ "2bjc",
207
+ "2bq5",
208
+ "2c62",
209
+ "2c9l",
210
+ "2cgp",
211
+ "2d2k",
212
+ "2d2l",
213
+ "2d6f",
214
+ "2dgc",
215
+ "2ere",
216
+ "2erg",
217
+ "2err",
218
+ "2fdt",
219
+ "2ff0",
220
+ "2fgp",
221
+ "2fio",
222
+ "2fjw",
223
+ "2fjx",
224
+ "2flc",
225
+ "2fll",
226
+ "2fln",
227
+ "2fr4",
228
+ "2gcs",
229
+ "2gcv",
230
+ "2gtt",
231
+ "2h0s",
232
+ "2h0w",
233
+ "2h0x",
234
+ "2h0z",
235
+ "2h7g",
236
+ "2hk4",
237
+ "2hkb",
238
+ "2hkc",
239
+ "2ho6",
240
+ "2ho7",
241
+ "2i3p",
242
+ "2i3q",
243
+ "2ihn",
244
+ "2irf",
245
+ "2ixz",
246
+ "2jlw",
247
+ "2jpa",
248
+ "2kei",
249
+ "2ky8",
250
+ "2l13",
251
+ "2l3c",
252
+ "2l3j",
253
+ "2l6i",
254
+ "2ldz",
255
+ "2ll9",
256
+ "2llj",
257
+ "2lo8",
258
+ "2loa",
259
+ "2m12",
260
+ "2m1o",
261
+ "2m8k",
262
+ "2mav",
263
+ "2mb2",
264
+ "2mft",
265
+ "2miy",
266
+ "2moe",
267
+ "2n0q",
268
+ "2n3o",
269
+ "2n6w",
270
+ "2n7x",
271
+ "2n82",
272
+ "2nbx",
273
+ "2nny",
274
+ "2np2",
275
+ "2npy",
276
+ "2npz",
277
+ "2o32",
278
+ "2o33",
279
+ "2o4i",
280
+ "2o4y",
281
+ "2o8k",
282
+ "2o9l",
283
+ "2oih",
284
+ "2oj3",
285
+ "2ost",
286
+ "2oue",
287
+ "2p7d",
288
+ "2p7e",
289
+ "2p7f",
290
+ "2pkv",
291
+ "2pl4",
292
+ "2pl8",
293
+ "2plb",
294
+ "2plo",
295
+ "2prt",
296
+ "2pua",
297
+ "2pub",
298
+ "2puc",
299
+ "2pud",
300
+ "2pue",
301
+ "2puf",
302
+ "2pug",
303
+ "2pxb",
304
+ "2pxd",
305
+ "2pxe",
306
+ "2pxf",
307
+ "2pxk",
308
+ "2pxl",
309
+ "2pxp",
310
+ "2pxq",
311
+ "2pxt",
312
+ "2pxu",
313
+ "2pxv",
314
+ "2py5",
315
+ "2qhb",
316
+ "2qnc",
317
+ "2r5y",
318
+ "2r5z",
319
+ "2r9l",
320
+ "2rba",
321
+ "2rpk",
322
+ "2rvo",
323
+ "2v3l",
324
+ "2v6e",
325
+ "2vah",
326
+ "2vai",
327
+ "2vbl",
328
+ "2vbn",
329
+ "2vum",
330
+ "2wiw",
331
+ "2wtf",
332
+ "2wtu",
333
+ "2x1a",
334
+ "2x1f",
335
+ "2xct",
336
+ "2xfm",
337
+ "2xo7",
338
+ "2xro",
339
+ "2y95",
340
+ "2yvh",
341
+ "2z2g",
342
+ "2z2h",
343
+ "2z33",
344
+ "2z74",
345
+ "2z75",
346
+ "357d",
347
+ "361d",
348
+ "364d",
349
+ "3adi",
350
+ "3agv",
351
+ "3b4a",
352
+ "3b4b",
353
+ "3b4c",
354
+ "3bep",
355
+ "3bse",
356
+ "3bx2",
357
+ "3c0w",
358
+ "3co6",
359
+ "3coa",
360
+ "3d2s",
361
+ "3dh3",
362
+ "3fd2",
363
+ "3foz",
364
+ "3gm7",
365
+ "3gs1",
366
+ "3gs8",
367
+ "3hax",
368
+ "3hou",
369
+ "3hov",
370
+ "3htx",
371
+ "3hxo",
372
+ "3hxq",
373
+ "3igt",
374
+ "3imb",
375
+ "3jce",
376
+ "3jra",
377
+ "3k49",
378
+ "3k4x",
379
+ "3k5y",
380
+ "3k5z",
381
+ "3l1p",
382
+ "3l2p",
383
+ "3la5",
384
+ "3loa",
385
+ "3lqx",
386
+ "3moj",
387
+ "3mr5",
388
+ "3mr6",
389
+ "3mx4",
390
+ "3mxa",
391
+ "3nic",
392
+ "3ogd",
393
+ "3os0",
394
+ "3pih",
395
+ "3pky",
396
+ "3pu0",
397
+ "3pu1",
398
+ "3q2t",
399
+ "3q3z",
400
+ "3qg9",
401
+ "3qgb",
402
+ "3qgc",
403
+ "3r1h",
404
+ "3r1l",
405
+ "3r7p",
406
+ "3sd3",
407
+ "3sq2",
408
+ "3ssf",
409
+ "3sun",
410
+ "3suq",
411
+ "3szq",
412
+ "3t5q",
413
+ "3tzr",
414
+ "3u6y",
415
+ "3ufd",
416
+ "3ugo",
417
+ "3ugp",
418
+ "3uo7",
419
+ "3uob",
420
+ "3ut9",
421
+ "3v72",
422
+ "3va3",
423
+ "3vw4",
424
+ "3wbm",
425
+ "3wgi",
426
+ "3zvk",
427
+ "414d",
428
+ "431d",
429
+ "432d",
430
+ "4a3b",
431
+ "4a3c",
432
+ "4a3d",
433
+ "4a3e",
434
+ "4a3f",
435
+ "4a3g",
436
+ "4a3k",
437
+ "4a3l",
438
+ "4a93",
439
+ "4aij",
440
+ "4aqu",
441
+ "4aqy",
442
+ "4ati",
443
+ "4av1",
444
+ "4b3m",
445
+ "4b3r",
446
+ "4b3s",
447
+ "4b3t",
448
+ "4bac",
449
+ "4by7",
450
+ "4bzv",
451
+ "4cgz",
452
+ "4dr5",
453
+ "4e7l",
454
+ "4f41",
455
+ "4f43",
456
+ "4f6n",
457
+ "4fgn",
458
+ "4fxd",
459
+ "4fyd",
460
+ "4g6r",
461
+ "4gck",
462
+ "4hqe",
463
+ "4hsb",
464
+ "4ig8",
465
+ "4iqx",
466
+ "4ir1",
467
+ "4ir9",
468
+ "4irc",
469
+ "4ird",
470
+ "4irk",
471
+ "4ivz",
472
+ "4ix7",
473
+ "4jv5",
474
+ "4k0k",
475
+ "4k1g",
476
+ "4k4s",
477
+ "4k4t",
478
+ "4kb0",
479
+ "4kb1",
480
+ "4ki2",
481
+ "4knq",
482
+ "4kzd",
483
+ "4kze",
484
+ "4l81",
485
+ "4lmg",
486
+ "4lnt",
487
+ "4lox",
488
+ "4lsk",
489
+ "4lt8",
490
+ "4lvv",
491
+ "4lvw",
492
+ "4lvx",
493
+ "4lvy",
494
+ "4lvz",
495
+ "4lw0",
496
+ "4lx5",
497
+ "4lx6",
498
+ "4m59",
499
+ "4meg",
500
+ "4meh",
501
+ "4mfa",
502
+ "4mgm",
503
+ "4mgn",
504
+ "4mky",
505
+ "4noe",
506
+ "4oav",
507
+ "4oe1",
508
+ "4oji",
509
+ "4oqu",
510
+ "4p97",
511
+ "4pjo",
512
+ "4plx",
513
+ "4prf",
514
+ "4q9q",
515
+ "4q9r",
516
+ "4qk9",
517
+ "4qpq",
518
+ "4qtr",
519
+ "4qyz",
520
+ "4qz8",
521
+ "4qz9",
522
+ "4qzc",
523
+ "4qzf",
524
+ "4r8a",
525
+ "4r8u",
526
+ "4rdx",
527
+ "4rec",
528
+ "4rhd",
529
+ "4ri9",
530
+ "4rtn",
531
+ "4rto",
532
+ "4rtp",
533
+ "4rwn",
534
+ "4rwo",
535
+ "4rwp",
536
+ "4s3n",
537
+ "4tue",
538
+ "4tzx",
539
+ "4tzy",
540
+ "4u7c",
541
+ "4umk",
542
+ "4usg",
543
+ "4v19",
544
+ "4v5a",
545
+ "4v5j",
546
+ "4v8d",
547
+ "4v8e",
548
+ "4v8f",
549
+ "4v8q",
550
+ "4v9n",
551
+ "4w5q",
552
+ "4wrt",
553
+ "4wsa",
554
+ "4wsb",
555
+ "4wtc",
556
+ "4wul",
557
+ "4x0g",
558
+ "4xnr",
559
+ "4xvl",
560
+ "4xvm",
561
+ "4yfu",
562
+ "4z2c",
563
+ "4znp",
564
+ "5a0m",
565
+ "5aj0",
566
+ "5amq",
567
+ "5amr",
568
+ "5b2o",
569
+ "5b2p",
570
+ "5b2q",
571
+ "5bng",
572
+ "5cdm",
573
+ "5cdn",
574
+ "5cg9",
575
+ "5cl3",
576
+ "5cl4",
577
+ "5cl5",
578
+ "5cl6",
579
+ "5cl7",
580
+ "5cl8",
581
+ "5cl9",
582
+ "5cla",
583
+ "5clc",
584
+ "5cld",
585
+ "5cle",
586
+ "5cnr",
587
+ "5cpi",
588
+ "5cpj",
589
+ "5cpk",
590
+ "5cv2",
591
+ "5d2q",
592
+ "5d4b",
593
+ "5d9i",
594
+ "5dhb",
595
+ "5do4",
596
+ "5dqt",
597
+ "5dv7",
598
+ "5e17",
599
+ "5e18",
600
+ "5e54",
601
+ "5e5s",
602
+ "5e63",
603
+ "5ean",
604
+ "5eyb",
605
+ "5f7q",
606
+ "5gse",
607
+ "5h1k",
608
+ "5h1l",
609
+ "5h3u",
610
+ "5haw",
611
+ "5hbu",
612
+ "5hbw",
613
+ "5hr4",
614
+ "5hrb",
615
+ "5hsw",
616
+ "5id6",
617
+ "5ip2",
618
+ "5jea",
619
+ "5k58",
620
+ "5k5r",
621
+ "5k7c",
622
+ "5k7d",
623
+ "5k7e",
624
+ "5kub",
625
+ "5l7c",
626
+ "5lxu",
627
+ "5m0h",
628
+ "5m3h",
629
+ "5mvp",
630
+ "5n90",
631
+ "5npp",
632
+ "5ns3",
633
+ "5ns4",
634
+ "5oc6",
635
+ "5swd",
636
+ "5swe",
637
+ "5szx",
638
+ "5t2h",
639
+ "5t5h",
640
+ "5t7b",
641
+ "5tjg",
642
+ "5tkz",
643
+ "5tpy",
644
+ "5u30",
645
+ "5u31",
646
+ "5ud5",
647
+ "5ulw",
648
+ "5ulx",
649
+ "5ux3",
650
+ "5uz6",
651
+ "5uza",
652
+ "5v0o",
653
+ "5v16",
654
+ "5v17",
655
+ "5v6x",
656
+ "5v9z",
657
+ "5vfx",
658
+ "5vl9",
659
+ "5w2a",
660
+ "5w6w",
661
+ "5wzg",
662
+ "5wzh",
663
+ "5wzi",
664
+ "5wzj",
665
+ "5wzk",
666
+ "5x2g",
667
+ "5x2h",
668
+ "5xog",
669
+ "5xs0",
670
+ "5xvp",
671
+ "5xy3",
672
+ "5y7g",
673
+ "5y7q",
674
+ "5yeh",
675
+ "5ytx",
676
+ "5ywt",
677
+ "5yzy",
678
+ "5yzz",
679
+ "5z6w",
680
+ "5z98",
681
+ "5zdz",
682
+ "5ze0",
683
+ "5ze1",
684
+ "5ze2",
685
+ "5zg9",
686
+ "5zjq",
687
+ "5zjr",
688
+ "5zjs",
689
+ "5zk1",
690
+ "5zko",
691
+ "5zmc",
692
+ "5zsd",
693
+ "5zsl",
694
+ "5zux",
695
+ "5zx2",
696
+ "5zyt",
697
+ "6a4b",
698
+ "6ama",
699
+ "6ar1",
700
+ "6ar3",
701
+ "6ar5",
702
+ "6b14",
703
+ "6b3k",
704
+ "6bch",
705
+ "6blw",
706
+ "6bmd",
707
+ "6bs1",
708
+ "6bwy",
709
+ "6c2f",
710
+ "6c2s",
711
+ "6cao",
712
+ "6cap",
713
+ "6caq",
714
+ "6car",
715
+ "6cas",
716
+ "6cg0",
717
+ "6cmn",
718
+ "6cst",
719
+ "6cvo",
720
+ "6d6q",
721
+ "6d6r",
722
+ "6d92",
723
+ "6dgd",
724
+ "6en8",
725
+ "6evk",
726
+ "6fb8",
727
+ "6fb9",
728
+ "6fhh",
729
+ "6fhi",
730
+ "6fqm",
731
+ "6fqs",
732
+ "6ftu",
733
+ "6fz0",
734
+ "6g1t",
735
+ "6gaw",
736
+ "6gb2",
737
+ "6gdn",
738
+ "6ge1",
739
+ "6gis",
740
+ "6gml",
741
+ "6go5",
742
+ "6h0r",
743
+ "6hag",
744
+ "6hix",
745
+ "6imj",
746
+ "6imk",
747
+ "6iml",
748
+ "6imn",
749
+ "6iod",
750
+ "6ir8",
751
+ "6is8",
752
+ "6iuc",
753
+ "6iud",
754
+ "6iv8",
755
+ "6iv9",
756
+ "6j4r",
757
+ "6jdg",
758
+ "6jdq",
759
+ "6jdv",
760
+ "6je3",
761
+ "6je4",
762
+ "6je9",
763
+ "6jfu",
764
+ "6jgw",
765
+ "6jni",
766
+ "6jrf",
767
+ "6jrg",
768
+ "6jrp",
769
+ "6juq",
770
+ "6k1k",
771
+ "6kc7",
772
+ "6kc8",
773
+ "6ke6",
774
+ "6koo",
775
+ "6kqh",
776
+ "6kwq",
777
+ "6l6s",
778
+ "6lqp",
779
+ "6ltr",
780
+ "6ltu",
781
+ "6lwr",
782
+ "6m05",
783
+ "6m0v",
784
+ "6m0w",
785
+ "6m0x",
786
+ "6m3l",
787
+ "6m6c",
788
+ "6m6k",
789
+ "6m6r",
790
+ "6mur",
791
+ "6mut",
792
+ "6muu",
793
+ "6n7r",
794
+ "6n8h",
795
+ "6o1k",
796
+ "6o1l",
797
+ "6o1m",
798
+ "6o7e",
799
+ "6o7h",
800
+ "6o7i",
801
+ "6o8q",
802
+ "6od4",
803
+ "6oes",
804
+ "6oet",
805
+ "6om6",
806
+ "6ore",
807
+ "6orl",
808
+ "6osq",
809
+ "6oy7",
810
+ "6p7b",
811
+ "6pmo",
812
+ "6q57",
813
+ "6qdw",
814
+ "6r9m",
815
+ "6rfl",
816
+ "6rj9",
817
+ "6rja",
818
+ "6rjd",
819
+ "6rjg",
820
+ "6s7d",
821
+ "6sdw",
822
+ "6sdy",
823
+ "6sty",
824
+ "6svs",
825
+ "6sy0",
826
+ "6t0w",
827
+ "6u6z",
828
+ "6u82",
829
+ "6u89",
830
+ "6u9q",
831
+ "6ug1",
832
+ "6ugi",
833
+ "6ugj",
834
+ "6utv",
835
+ "6vaa",
836
+ "6vcs",
837
+ "6vlz",
838
+ "6vmi",
839
+ "6vtx",
840
+ "6vwt",
841
+ "6vwv",
842
+ "6w5c",
843
+ "6waa",
844
+ "6wig",
845
+ "6wmr",
846
+ "6wmu",
847
+ "6x8c",
848
+ "6xb7",
849
+ "6xdz",
850
+ "6xgj",
851
+ "6xh0",
852
+ "6xh1",
853
+ "6xh2",
854
+ "6xh3",
855
+ "6xnx",
856
+ "6xny",
857
+ "6xo5",
858
+ "6xo6",
859
+ "6xo9",
860
+ "6xu8",
861
+ "6xwg",
862
+ "6y0g",
863
+ "6y2l",
864
+ "6ybw",
865
+ "6ys3",
866
+ "6yw5",
867
+ "6ywe",
868
+ "6ywx",
869
+ "6ywy",
870
+ "6yxy",
871
+ "6z1a",
872
+ "6z2y",
873
+ "6z6g",
874
+ "6z8k",
875
+ "6za3",
876
+ "6zab",
877
+ "6zj3",
878
+ "6znp",
879
+ "6znq",
880
+ "6zsc",
881
+ "6zvi",
882
+ "6zym",
883
+ "7aap",
884
+ "7act",
885
+ "7aoi",
886
+ "7b1y",
887
+ "7b20",
888
+ "7b23",
889
+ "7b24",
890
+ "7b25",
891
+ "7b7d",
892
+ "7bhp",
893
+ "7bkp",
894
+ "7cc9",
895
+ "7cli",
896
+ "7cps",
897
+ "7cqa",
898
+ "7csk",
899
+ "7cvq",
900
+ "7cxm",
901
+ "7cyq",
902
+ "7d12",
903
+ "7d3v",
904
+ "7d3w",
905
+ "7d3x",
906
+ "7dcj",
907
+ "7dfg",
908
+ "7dn3",
909
+ "7do1",
910
+ "7doi",
911
+ "7dok",
912
+ "7dta",
913
+ "7dwr",
914
+ "7edb",
915
+ "7eiu",
916
+ "7exy",
917
+ "7f36",
918
+ "7fgt",
919
+ "7jft",
920
+ "7jfw",
921
+ "7jfx",
922
+ "7jh8",
923
+ "7jh9",
924
+ "7jha",
925
+ "7jhc",
926
+ "7jht",
927
+ "7jhu",
928
+ "7jhv",
929
+ "7jiq",
930
+ "7jj3",
931
+ "7jj4",
932
+ "7jj5",
933
+ "7jjy",
934
+ "7jkd",
935
+ "7jke",
936
+ "7jkg",
937
+ "7jkh",
938
+ "7jkj",
939
+ "7jkk",
940
+ "7jl9",
941
+ "7jla",
942
+ "7jlb",
943
+ "7jlc",
944
+ "7jld",
945
+ "7jle",
946
+ "7jlf",
947
+ "7jnh",
948
+ "7jnj",
949
+ "7jnk",
950
+ "7jnl",
951
+ "7jnm",
952
+ "7jp7",
953
+ "7jsb",
954
+ "7jsc",
955
+ "7jy6",
956
+ "7jy8",
957
+ "7jy9",
958
+ "7k9d",
959
+ "7k9e",
960
+ "7kd1",
961
+ "7kga",
962
+ "7kjv",
963
+ "7kjw",
964
+ "7kjx",
965
+ "7kkv",
966
+ "7ksp",
967
+ "7l4x",
968
+ "7l4y",
969
+ "7lyf",
970
+ "7m09",
971
+ "7m0a",
972
+ "7m0d",
973
+ "7m0e",
974
+ "7m5d",
975
+ "7m99",
976
+ "7ml0",
977
+ "7n0c",
978
+ "7nbl",
979
+ "7nbp",
980
+ "7nej",
981
+ "7nha",
982
+ "7nhc",
983
+ "7nhx",
984
+ "7ni0",
985
+ "7nqh",
986
+ "7nql",
987
+ "7nsh",
988
+ "7nsp",
989
+ "7nsq",
990
+ "7nwt",
991
+ "7nx5",
992
+ "7oar",
993
+ "7obr",
994
+ "7og0",
995
+ "7oii",
996
+ "7okx",
997
+ "7ol0",
998
+ "7ork",
999
+ "7orm",
1000
+ "7orn",
1001
+ "7oro",
1002
+ "7osa",
1003
+ "7osm",
1004
+ "7ot5",
1005
+ "7ouf",
1006
+ "7oug",
1007
+ "7ouh",
1008
+ "7p0v",
1009
+ "7p6z",
1010
+ "7pdu",
1011
+ "7pel",
1012
+ "7pkt",
1013
+ "7po6",
1014
+ "7pof",
1015
+ "7pwg",
1016
+ "7pwo",
1017
+ "7q2y",
1018
+ "7qd6",
1019
+ "7qhs",
1020
+ "7qiw",
1021
+ "7qiz",
1022
+ "7qr3",
1023
+ "7qr4",
1024
+ "7qv1",
1025
+ "7qvp",
1026
+ "7r21",
1027
+ "7r2k",
1028
+ "7r5s",
1029
+ "7r77",
1030
+ "7r78",
1031
+ "7r9g",
1032
+ "7rgu",
1033
+ "7rsu",
1034
+ "7rwr",
1035
+ "7sd8",
1036
+ "7sdf",
1037
+ "7sga",
1038
+ "7sgz",
1039
+ "7sh2",
1040
+ "7sm9",
1041
+ "7st9",
1042
+ "7stb",
1043
+ "7svu",
1044
+ "7tfh",
1045
+ "7tfi",
1046
+ "7tfj",
1047
+ "7tfk",
1048
+ "7tfl",
1049
+ "7u3o",
1050
+ "7u4a",
1051
+ "7ubl",
1052
+ "7ufx",
1053
+ "7uga",
1054
+ "7ujl",
1055
+ "7umd",
1056
+ "7un7",
1057
+ "7und",
1058
+ "7upz",
1059
+ "7uv6",
1060
+ "7uv7",
1061
+ "7uyn",
1062
+ "7v9i",
1063
+ "7ve5",
1064
+ "7vjq",
1065
+ "7vki",
1066
+ "7vm9",
1067
+ "7vou",
1068
+ "7vp1",
1069
+ "7vp3",
1070
+ "7vsj",
1071
+ "7vyx",
1072
+ "7vz4",
1073
+ "7way",
1074
+ "7waz",
1075
+ "7wb0",
1076
+ "7wia",
1077
+ "7wv5",
1078
+ "7wve",
1079
+ "7wvj",
1080
+ "7x5a",
1081
+ "7xg0",
1082
+ "7xg1",
1083
+ "7xg2",
1084
+ "7xg3",
1085
+ "7xpx",
1086
+ "7xso",
1087
+ "7xsp",
1088
+ "7xsq",
1089
+ "7xsr",
1090
+ "7xss",
1091
+ "7xue",
1092
+ "7y7c",
1093
+ "7y7d",
1094
+ "7y7e",
1095
+ "7y7f",
1096
+ "7y7g",
1097
+ "7y7h",
1098
+ "7ypo",
1099
+ "7yse",
1100
+ "7ysf",
1101
+ "7z43",
1102
+ "7z4j",
1103
+ "7z9c",
1104
+ "7z9g",
1105
+ "7z9k",
1106
+ "7z9m",
1107
+ "7zb5",
1108
+ "7zhg",
1109
+ "7zo1",
1110
+ "7zq6",
1111
+ "7zta",
1112
+ "8a22",
1113
+ "8a8j",
1114
+ "8a93",
1115
+ "8aa5",
1116
+ "8aas",
1117
+ "8af0",
1118
+ "8ag6",
1119
+ "8ane",
1120
+ "8apn",
1121
+ "8apo",
1122
+ "8azw",
1123
+ "8b1t",
1124
+ "8b2l",
1125
+ "8b4d",
1126
+ "8bf8",
1127
+ "8br8",
1128
+ "8brm",
1129
+ "8bsi",
1130
+ "8btr",
1131
+ "8bw5",
1132
+ "8c4u",
1133
+ "8c4v",
1134
+ "8c8j",
1135
+ "8cq1",
1136
+ "8d33",
1137
+ "8d37",
1138
+ "8d3r",
1139
+ "8d42",
1140
+ "8d4a",
1141
+ "8d4b",
1142
+ "8dcj",
1143
+ "8dej",
1144
+ "8df8",
1145
+ "8dfb",
1146
+ "8dk3",
1147
+ "8dlf",
1148
+ "8dqx",
1149
+ "8e3d",
1150
+ "8e3e",
1151
+ "8ea4",
1152
+ "8edj",
1153
+ "8eey",
1154
+ "8eg7",
1155
+ "8eg8",
1156
+ "8eh8",
1157
+ "8ehf",
1158
+ "8ekz",
1159
+ "8em9",
1160
+ "8ep8",
1161
+ "8epb",
1162
+ "8epg",
1163
+ "8ex9",
1164
+ "8exa",
1165
+ "8f3c",
1166
+ "8f40",
1167
+ "8fak",
1168
+ "8ffr",
1169
+ "8fkp",
1170
+ "8fkq",
1171
+ "8fkr",
1172
+ "8fks",
1173
+ "8fkt",
1174
+ "8fku",
1175
+ "8fkv",
1176
+ "8fkw",
1177
+ "8fkx",
1178
+ "8fky",
1179
+ "8fkz",
1180
+ "8fl2",
1181
+ "8fl6",
1182
+ "8fla",
1183
+ "8fld",
1184
+ "8fru",
1185
+ "8fs3",
1186
+ "8fs4",
1187
+ "8fs5",
1188
+ "8fs6",
1189
+ "8fs7",
1190
+ "8fs8",
1191
+ "8fy9",
1192
+ "8fya",
1193
+ "8g00",
1194
+ "8g5i",
1195
+ "8g5j",
1196
+ "8g5k",
1197
+ "8g5l",
1198
+ "8gh6",
1199
+ "8gj0",
1200
+ "8gj1",
1201
+ "8gj2",
1202
+ "8gj3",
1203
+ "8gs2",
1204
+ "8gxb",
1205
+ "8gxc",
1206
+ "8gzg",
1207
+ "8gzh",
1208
+ "8h9d",
1209
+ "8hig",
1210
+ "8hj4",
1211
+ "8hml",
1212
+ "8i3q",
1213
+ "8iaz",
1214
+ "8id2",
1215
+ "8ifb",
1216
+ "8ifc",
1217
+ "8igr",
1218
+ "8igs",
1219
+ "8ik8",
1220
+ "8ip8",
1221
+ "8ipa",
1222
+ "8ipb",
1223
+ "8j1q",
1224
+ "8j26",
1225
+ "8j86",
1226
+ "8j8f",
1227
+ "8j8g",
1228
+ "8j9v",
1229
+ "8j9x",
1230
+ "8jiv",
1231
+ "8jmj",
1232
+ "8jmk",
1233
+ "8jo2",
1234
+ "8k4l",
1235
+ "8k87",
1236
+ "8k88",
1237
+ "8kah",
1238
+ "8kai",
1239
+ "8kaj",
1240
+ "8kb5",
1241
+ "8oiq",
1242
+ "8okd",
1243
+ "8oki",
1244
+ "8ova",
1245
+ "8ove",
1246
+ "8p16",
1247
+ "8p17",
1248
+ "8p18",
1249
+ "8p4b",
1250
+ "8p6p",
1251
+ "8p7x",
1252
+ "8p8b",
1253
+ "8pbc",
1254
+ "8pbd",
1255
+ "8pi8",
1256
+ "8pia",
1257
+ "8pj1",
1258
+ "8pj2",
1259
+ "8pj4",
1260
+ "8pj5",
1261
+ "8pj6",
1262
+ "8pj9",
1263
+ "8ppt",
1264
+ "8psx",
1265
+ "8psz",
1266
+ "8ptx",
1267
+ "8ptz",
1268
+ "8pvv",
1269
+ "8q43",
1270
+ "8qcq",
1271
+ "8qgt",
1272
+ "8qh3",
1273
+ "8qk7",
1274
+ "8qkx",
1275
+ "8qoa",
1276
+ "8que",
1277
+ "8r60",
1278
+ "8ram",
1279
+ "8ran",
1280
+ "8rdu",
1281
+ "8re4",
1282
+ "8rea",
1283
+ "8rig",
1284
+ "8rkv",
1285
+ "8rm7",
1286
+ "8rmh",
1287
+ "8rqk",
1288
+ "8rr3",
1289
+ "8s54",
1290
+ "8s55",
1291
+ "8s5n",
1292
+ "8sro",
1293
+ "8sxl",
1294
+ "8sz5",
1295
+ "8t2x",
1296
+ "8t2y",
1297
+ "8t2z",
1298
+ "8t7e",
1299
+ "8tjq",
1300
+ "8tju",
1301
+ "8tjv",
1302
+ "8tjx",
1303
+ "8toc",
1304
+ "8txo",
1305
+ "8u0j",
1306
+ "8u3y",
1307
+ "8udk",
1308
+ "8uha",
1309
+ "8uhd",
1310
+ "8uhg",
1311
+ "8ui0",
1312
+ "8uis",
1313
+ "8umv",
1314
+ "8umw",
1315
+ "8umy",
1316
+ "8un0",
1317
+ "8upy",
1318
+ "8urb",
1319
+ "8uvx",
1320
+ "8uzt",
1321
+ "8ves",
1322
+ "8vma",
1323
+ "8vmb",
1324
+ "8w2o",
1325
+ "8w2z",
1326
+ "8wat",
1327
+ "8wau",
1328
+ "8way",
1329
+ "8wpe",
1330
+ "8wpf",
1331
+ "8wpk",
1332
+ "8wpp",
1333
+ "8wus",
1334
+ "8x1v",
1335
+ "8xa9",
1336
+ "8xj7",
1337
+ "8xj8",
1338
+ "8xyc",
1339
+ "8y2i",
1340
+ "8y6o",
1341
+ "8zlu",
1342
+ "8zm3",
1343
+ "8zol",
1344
+ "8zp7",
1345
+ "8zp9",
1346
+ "9b8t",
1347
+ "9bgk",
1348
+ "9blm",
1349
+ "9ces",
1350
+ "9cet",
1351
+ "9cj6",
1352
+ "9cji",
1353
+ "9cjj",
1354
+ "9cxf",
1355
+ "9e6q",
1356
+ "9e71",
1357
+ "9e7f",
1358
+ "9eco",
1359
+ "9enb",
1360
+ "9enc",
1361
+ "9erf",
1362
+ "9esh",
1363
+ "9esi",
1364
+ "9f2r",
1365
+ "9f37",
1366
+ "9f6i",
1367
+ "9fia",
1368
+ "9foy",
1369
+ "9g6k",
1370
+ "9gd0",
1371
+ "9gr1",
1372
+ "9ij1",
1373
+ "9ixm",
1374
+ "9jxs"
1375
+ ]
splits/design_train.json ADDED
The diff for this file is too large to render. See raw diff
 
splits/design_valid.json ADDED
@@ -0,0 +1,1332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "118d",
3
+ "122d",
4
+ "123d",
5
+ "185d",
6
+ "192d",
7
+ "1a1f",
8
+ "1a1k",
9
+ "1a4d",
10
+ "1a9g",
11
+ "1a9h",
12
+ "1a9i",
13
+ "1a9j",
14
+ "1aju",
15
+ "1akx",
16
+ "1al9",
17
+ "1anr",
18
+ "1arj",
19
+ "1aud",
20
+ "1awc",
21
+ "1axl",
22
+ "1azq",
23
+ "1b69",
24
+ "1bd1",
25
+ "1bg1",
26
+ "1bgb",
27
+ "1bhm",
28
+ "1bjd",
29
+ "1bnz",
30
+ "1cf7",
31
+ "1cgp",
32
+ "1crx",
33
+ "1cw9",
34
+ "1d3r",
35
+ "1d91",
36
+ "1d93",
37
+ "1drg",
38
+ "1dsa",
39
+ "1dsi",
40
+ "1dsm",
41
+ "1e4p",
42
+ "1e7j",
43
+ "1eeg",
44
+ "1emh",
45
+ "1emj",
46
+ "1eop",
47
+ "1f44",
48
+ "1f6x",
49
+ "1f6z",
50
+ "1f78",
51
+ "1f79",
52
+ "1f7f",
53
+ "1f7g",
54
+ "1f7h",
55
+ "1f7i",
56
+ "1fje",
57
+ "1fuf",
58
+ "1fyi",
59
+ "1gdt",
60
+ "1gqu",
61
+ "1gtn",
62
+ "1guc",
63
+ "1hc8",
64
+ "1hji",
65
+ "1hm1",
66
+ "1i6j",
67
+ "1i9x",
68
+ "1ie1",
69
+ "1ie2",
70
+ "1ik5",
71
+ "1ikd",
72
+ "1imh",
73
+ "1ir5",
74
+ "1ixj",
75
+ "1j59",
76
+ "1jur",
77
+ "1jvc",
78
+ "1k1g",
79
+ "1k6o",
80
+ "1k8w",
81
+ "1kfo",
82
+ "1kh6",
83
+ "1kix",
84
+ "1kks",
85
+ "1kos",
86
+ "1ksy",
87
+ "1l3z",
88
+ "1lc6",
89
+ "1le9",
90
+ "1lvj",
91
+ "1m5k",
92
+ "1m5o",
93
+ "1m5p",
94
+ "1m5v",
95
+ "1m77",
96
+ "1mfk",
97
+ "1mjm",
98
+ "1mms",
99
+ "1n1k",
100
+ "1n35",
101
+ "1n66",
102
+ "1nk0",
103
+ "1nk2",
104
+ "1nk3",
105
+ "1nwq",
106
+ "1nz1",
107
+ "1o3r",
108
+ "1o3s",
109
+ "1o3t",
110
+ "1odh",
111
+ "1oln",
112
+ "1omh",
113
+ "1oq0",
114
+ "1osb",
115
+ "1osl",
116
+ "1ouq",
117
+ "1ow9",
118
+ "1owr",
119
+ "1p0u",
120
+ "1p5m",
121
+ "1p96",
122
+ "1pik",
123
+ "1q3f",
124
+ "1q3v",
125
+ "1q93",
126
+ "1q96",
127
+ "1qa6",
128
+ "1qc0",
129
+ "1qd3",
130
+ "1qfq",
131
+ "1qss",
132
+ "1qsy",
133
+ "1qtm",
134
+ "1qwa",
135
+ "1qx0",
136
+ "1r2l",
137
+ "1r3e",
138
+ "1r4e",
139
+ "1r9t",
140
+ "1rh6",
141
+ "1rkj",
142
+ "1rlg",
143
+ "1rsb",
144
+ "1run",
145
+ "1ruo",
146
+ "1s6m",
147
+ "1s9n",
148
+ "1sa9",
149
+ "1saq",
150
+ "1scl",
151
+ "1sp6",
152
+ "1ssj",
153
+ "1sy4",
154
+ "1syz",
155
+ "1tf6",
156
+ "1tlr",
157
+ "1tn9",
158
+ "1tob",
159
+ "1u6b",
160
+ "1u78",
161
+ "1u8b",
162
+ "1uts",
163
+ "1uud",
164
+ "1uui",
165
+ "1vfg",
166
+ "1w36",
167
+ "1wsu",
168
+ "1wtq",
169
+ "1wtv",
170
+ "1wtx",
171
+ "1xhu",
172
+ "1xhv",
173
+ "1xpx",
174
+ "1xsg",
175
+ "1xsh",
176
+ "1xst",
177
+ "1xsu",
178
+ "1xv0",
179
+ "1xvn",
180
+ "1y39",
181
+ "1y69",
182
+ "1yfv",
183
+ "1yg3",
184
+ "1yg4",
185
+ "1ylg",
186
+ "1ync",
187
+ "1yne",
188
+ "1yng",
189
+ "1ysa",
190
+ "1ysv",
191
+ "1ze2",
192
+ "1zew",
193
+ "1zfa",
194
+ "1zl3",
195
+ "1zm5",
196
+ "1zns",
197
+ "1zq3",
198
+ "1zr4",
199
+ "1zzn",
200
+ "220d",
201
+ "243d",
202
+ "295d",
203
+ "2a6o",
204
+ "2a7e",
205
+ "2ab4",
206
+ "2adw",
207
+ "2aoq",
208
+ "2ap0",
209
+ "2ap5",
210
+ "2b0d",
211
+ "2b0e",
212
+ "2bam",
213
+ "2bcr",
214
+ "2bcs",
215
+ "2bdp",
216
+ "2bgg",
217
+ "2c6y",
218
+ "2cd1",
219
+ "2cd3",
220
+ "2cd5",
221
+ "2cd6",
222
+ "2cdm",
223
+ "2csx",
224
+ "2ct8",
225
+ "2czj",
226
+ "2d25",
227
+ "2dd1",
228
+ "2dd2",
229
+ "2dd3",
230
+ "2e2i",
231
+ "2e9t",
232
+ "2evy",
233
+ "2ex5",
234
+ "2ez6",
235
+ "2f8s",
236
+ "2fld",
237
+ "2fy1",
238
+ "2g1p",
239
+ "2g1z",
240
+ "2gjw",
241
+ "2glo",
242
+ "2gm4",
243
+ "2grw",
244
+ "2gv4",
245
+ "2ht0",
246
+ "2irn",
247
+ "2iy5",
248
+ "2jlt",
249
+ "2jq7",
250
+ "2jx1",
251
+ "2k3z",
252
+ "2k41",
253
+ "2kdq",
254
+ "2kez",
255
+ "2kf0",
256
+ "2kh3",
257
+ "2kn7",
258
+ "2kpr",
259
+ "2kqg",
260
+ "2ktq",
261
+ "2kwg",
262
+ "2kx5",
263
+ "2kye",
264
+ "2kzl",
265
+ "2l1f",
266
+ "2l8h",
267
+ "2ld5",
268
+ "2lkx",
269
+ "2lqz",
270
+ "2lvy",
271
+ "2m6v",
272
+ "2map",
273
+ "2mf8",
274
+ "2mi0",
275
+ "2miv",
276
+ "2mrz",
277
+ "2ms0",
278
+ "2ms1",
279
+ "2n4y",
280
+ "2nci",
281
+ "2nok",
282
+ "2nuf",
283
+ "2nvq",
284
+ "2o49",
285
+ "2o4a",
286
+ "2o5i",
287
+ "2o5j",
288
+ "2oeu",
289
+ "2oxm",
290
+ "2oyt",
291
+ "2ozb",
292
+ "2pjp",
293
+ "2ply",
294
+ "2pn3",
295
+ "2pn4",
296
+ "2ppb",
297
+ "2pyl",
298
+ "2qsg",
299
+ "2qsh",
300
+ "2r8j",
301
+ "2r8k",
302
+ "2rdj",
303
+ "2rpt",
304
+ "2uwm",
305
+ "2voa",
306
+ "2w42",
307
+ "2wb2",
308
+ "2wq6",
309
+ "2wq7",
310
+ "2x2q",
311
+ "2xgp",
312
+ "2xgq",
313
+ "2xs2",
314
+ "2yu9",
315
+ "2zi0",
316
+ "2zjq",
317
+ "2zjr",
318
+ "2zkf",
319
+ "2zko",
320
+ "2zy6",
321
+ "317d",
322
+ "344d",
323
+ "358d",
324
+ "365d",
325
+ "375d",
326
+ "376d",
327
+ "395d",
328
+ "3ana",
329
+ "3avu",
330
+ "3avw",
331
+ "3bam",
332
+ "3bo2",
333
+ "3bo3",
334
+ "3bo4",
335
+ "3bsb",
336
+ "3cf5",
337
+ "3cvu",
338
+ "3cvv",
339
+ "3cvw",
340
+ "3cvx",
341
+ "3cvy",
342
+ "3dll",
343
+ "3e2e",
344
+ "3e44",
345
+ "3eog",
346
+ "3eoh",
347
+ "3exj",
348
+ "3exl",
349
+ "3f2b",
350
+ "3f2c",
351
+ "3f2d",
352
+ "3fte",
353
+ "3ftf",
354
+ "3g9y",
355
+ "3go3",
356
+ "3gp8",
357
+ "3gtj",
358
+ "3gtl",
359
+ "3gv5",
360
+ "3i5e",
361
+ "3i5l",
362
+ "3iff",
363
+ "3j7o",
364
+ "3j7p",
365
+ "3j7q",
366
+ "3jah",
367
+ "3jcs",
368
+ "3jso",
369
+ "3jsp",
370
+ "3jtg",
371
+ "3k62",
372
+ "3k9f",
373
+ "3knc",
374
+ "3ko2",
375
+ "3ksa",
376
+ "3ktq",
377
+ "3ltn",
378
+ "3lwh",
379
+ "3m3y",
380
+ "3mgv",
381
+ "3mip",
382
+ "3mis",
383
+ "3mqy",
384
+ "3n6s",
385
+ "3nnc",
386
+ "3nvi",
387
+ "3odh",
388
+ "3oh6",
389
+ "3oh9",
390
+ "3ol6",
391
+ "3ol9",
392
+ "3ola",
393
+ "3olb",
394
+ "3oqm",
395
+ "3p59",
396
+ "3pf4",
397
+ "3pio",
398
+ "3pip",
399
+ "3pkm",
400
+ "3po5",
401
+ "3pt6",
402
+ "3px7",
403
+ "3pzp",
404
+ "3q05",
405
+ "3q06",
406
+ "3qrp",
407
+ "3qrr",
408
+ "3rad",
409
+ "3rae",
410
+ "3raf",
411
+ "3rn5",
412
+ "3sj2",
413
+ "3sq4",
414
+ "3suo",
415
+ "3sup",
416
+ "3syw",
417
+ "3szx",
418
+ "3t3n",
419
+ "3tup",
420
+ "3u3w",
421
+ "3u44",
422
+ "3u4q",
423
+ "3ukg",
424
+ "3uq0",
425
+ "3uq2",
426
+ "3v7j",
427
+ "3v7k",
428
+ "3v9d",
429
+ "3v9x",
430
+ "3w6v",
431
+ "3wpg",
432
+ "3wph",
433
+ "3x1l",
434
+ "3zd4",
435
+ "3zd5",
436
+ "3zp8",
437
+ "430d",
438
+ "433d",
439
+ "474d",
440
+ "484d",
441
+ "4a09",
442
+ "4a8w",
443
+ "4aa6",
444
+ "4ail",
445
+ "4awl",
446
+ "4b9n",
447
+ "4bxo",
448
+ "4c4w",
449
+ "4c7o",
450
+ "4c8l",
451
+ "4cn5",
452
+ "4csf",
453
+ "4dl6",
454
+ "4du1",
455
+ "4du4",
456
+ "4e0p",
457
+ "4e0y",
458
+ "4e54",
459
+ "4e5z",
460
+ "4e68",
461
+ "4eey",
462
+ "4egz",
463
+ "4esv",
464
+ "4fbt",
465
+ "4fbu",
466
+ "4fj5",
467
+ "4fj7",
468
+ "4fj8",
469
+ "4fjh",
470
+ "4g7h",
471
+ "4g92",
472
+ "4gfb",
473
+ "4gha",
474
+ "4gzn",
475
+ "4h0e",
476
+ "4h5p",
477
+ "4h5q",
478
+ "4hkq",
479
+ "4hly",
480
+ "4i2a",
481
+ "4ifd",
482
+ "4iht",
483
+ "4ill",
484
+ "4io9",
485
+ "4ioa",
486
+ "4izq",
487
+ "4j2b",
488
+ "4j2e",
489
+ "4j39",
490
+ "4j50",
491
+ "4j5v",
492
+ "4j9l",
493
+ "4j9m",
494
+ "4j9o",
495
+ "4j9q",
496
+ "4j9s",
497
+ "4jrp",
498
+ "4jrq",
499
+ "4jrt",
500
+ "4k4u",
501
+ "4k4x",
502
+ "4k4y",
503
+ "4k4z",
504
+ "4k50",
505
+ "4klq",
506
+ "4kls",
507
+ "4klt",
508
+ "4klu",
509
+ "4koe",
510
+ "4kpe",
511
+ "4kpf",
512
+ "4kpy",
513
+ "4kr6",
514
+ "4kr7",
515
+ "4kr9",
516
+ "4ktq",
517
+ "4l62",
518
+ "4lck",
519
+ "4lg2",
520
+ "4lup",
521
+ "4m2z",
522
+ "4m30",
523
+ "4m3t",
524
+ "4m3u",
525
+ "4m41",
526
+ "4m42",
527
+ "4m4o",
528
+ "4m94",
529
+ "4m95",
530
+ "4m9v",
531
+ "4mdx",
532
+ "4mzr",
533
+ "4n76",
534
+ "4nca",
535
+ "4ncb",
536
+ "4ngf",
537
+ "4nm2",
538
+ "4oin",
539
+ "4okl",
540
+ "4ol8",
541
+ "4oln",
542
+ "4pba",
543
+ "4peh",
544
+ "4pmw",
545
+ "4qjd",
546
+ "4qze",
547
+ "4qzi",
548
+ "4r4e",
549
+ "4rge",
550
+ "4rgf",
551
+ "4ro8",
552
+ "4rq4",
553
+ "4rq5",
554
+ "4rq6",
555
+ "4rq7",
556
+ "4rq8",
557
+ "4rtj",
558
+ "4rzr",
559
+ "4tvx",
560
+ "4u6p",
561
+ "4u92",
562
+ "4v2s",
563
+ "4v5l",
564
+ "4v5p",
565
+ "4v5q",
566
+ "4v5r",
567
+ "4v5s",
568
+ "4v9c",
569
+ "4w2e",
570
+ "4wal",
571
+ "4wan",
572
+ "4wc2",
573
+ "4wc3",
574
+ "4wc5",
575
+ "4wc6",
576
+ "4wc7",
577
+ "4wj4",
578
+ "4wqf",
579
+ "4wqu",
580
+ "4x0b",
581
+ "4x62",
582
+ "4x64",
583
+ "4x65",
584
+ "4x66",
585
+ "4xrm",
586
+ "4xrs",
587
+ "4xvi",
588
+ "4xvk",
589
+ "4xzf",
590
+ "4y52",
591
+ "4y5w",
592
+ "4y7n",
593
+ "4ycp",
594
+ "4yf0",
595
+ "4yfh",
596
+ "4yg1",
597
+ "4yir",
598
+ "4yn6",
599
+ "4z3o",
600
+ "4z4e",
601
+ "4z53",
602
+ "4zbn",
603
+ "4zer",
604
+ "4zkk",
605
+ "5b81",
606
+ "5bz1",
607
+ "5c51",
608
+ "5cd4",
609
+ "5cdr",
610
+ "5cki",
611
+ "5ckk",
612
+ "5cnq",
613
+ "5d2s",
614
+ "5d39",
615
+ "5dcv",
616
+ "5ddo",
617
+ "5ddp",
618
+ "5ddq",
619
+ "5ddr",
620
+ "5dm6",
621
+ "5dm7",
622
+ "5dun",
623
+ "5elh",
624
+ "5esp",
625
+ "5f8g",
626
+ "5f8h",
627
+ "5f8i",
628
+ "5f9i",
629
+ "5f9r",
630
+ "5fgp",
631
+ "5fhj",
632
+ "5fhl",
633
+ "5fj4",
634
+ "5gm6",
635
+ "5gwl",
636
+ "5h3r",
637
+ "5h9e",
638
+ "5h9f",
639
+ "5hc9",
640
+ "5hhh",
641
+ "5hhi",
642
+ "5hod",
643
+ "5hr9",
644
+ "5hto",
645
+ "5iye",
646
+ "5iyg",
647
+ "5iyj",
648
+ "5j05",
649
+ "5j0m",
650
+ "5j1o",
651
+ "5j2w",
652
+ "5j37",
653
+ "5j4p",
654
+ "5j4w",
655
+ "5jk0",
656
+ "5jub",
657
+ "5jvg",
658
+ "5jvw",
659
+ "5k36",
660
+ "5k5l",
661
+ "5k78",
662
+ "5keg",
663
+ "5kk5",
664
+ "5kn9",
665
+ "5kvj",
666
+ "5lit",
667
+ "5lzd",
668
+ "5lze",
669
+ "5m8i",
670
+ "5mdv",
671
+ "5mdw",
672
+ "5mdy",
673
+ "5mdz",
674
+ "5mey",
675
+ "5mga",
676
+ "5mrc",
677
+ "5n9a",
678
+ "5nm9",
679
+ "5npk",
680
+ "5nw9",
681
+ "5o6e",
682
+ "5ocz",
683
+ "5odf",
684
+ "5odm",
685
+ "5oe1",
686
+ "5ond",
687
+ "5or0",
688
+ "5sww",
689
+ "5t2a",
690
+ "5u0a",
691
+ "5u4i",
692
+ "5ua3",
693
+ "5uk7",
694
+ "5uq7",
695
+ "5uq8",
696
+ "5uug",
697
+ "5uuh",
698
+ "5v0e",
699
+ "5v1i",
700
+ "5v1j",
701
+ "5v1o",
702
+ "5v1r",
703
+ "5v3j",
704
+ "5v3m",
705
+ "5va0",
706
+ "5vm9",
707
+ "5vo8",
708
+ "5voi",
709
+ "5vpo",
710
+ "5vsu",
711
+ "5vvk",
712
+ "5vvl",
713
+ "5vxn",
714
+ "5w20",
715
+ "5w51",
716
+ "5w6k",
717
+ "5w6q",
718
+ "5wjq",
719
+ "5wnp",
720
+ "5wnv",
721
+ "5wti",
722
+ "5wwc",
723
+ "5xtm",
724
+ "5xuu",
725
+ "5xuz",
726
+ "5y6z",
727
+ "5ytc",
728
+ "5zc9",
729
+ "5zki",
730
+ "5zkj",
731
+ "5zwm",
732
+ "6aeg",
733
+ "6aso",
734
+ "6az3",
735
+ "6b1q",
736
+ "6bk8",
737
+ "6c4i",
738
+ "6c5l",
739
+ "6cae",
740
+ "6cfi",
741
+ "6chv",
742
+ "6cik",
743
+ "6cuu",
744
+ "6d2u",
745
+ "6dbi",
746
+ "6dcb",
747
+ "6dcc",
748
+ "6dcl",
749
+ "6dkl",
750
+ "6dmc",
751
+ "6dmd",
752
+ "6dme",
753
+ "6dww",
754
+ "6dwz",
755
+ "6dx0",
756
+ "6dy9",
757
+ "6e8c",
758
+ "6e8s",
759
+ "6e8t",
760
+ "6e8u",
761
+ "6f1k",
762
+ "6f2s",
763
+ "6f4h",
764
+ "6f57",
765
+ "6fi8",
766
+ "6fn0",
767
+ "6fqp",
768
+ "6fqq",
769
+ "6gaz",
770
+ "6gd2",
771
+ "6gim",
772
+ "6grb",
773
+ "6grc",
774
+ "6grd",
775
+ "6gtg",
776
+ "6gvq",
777
+ "6gvt",
778
+ "6gvu",
779
+ "6gy3",
780
+ "6gz5",
781
+ "6gz7",
782
+ "6hct",
783
+ "6hmi",
784
+ "6hmo",
785
+ "6i1k",
786
+ "6i1l",
787
+ "6i4n",
788
+ "6i4o",
789
+ "6iid",
790
+ "6j6g",
791
+ "6jbx",
792
+ "6jgx",
793
+ "6jyw",
794
+ "6kbx",
795
+ "6kbz",
796
+ "6l2n",
797
+ "6l2o",
798
+ "6lbm",
799
+ "6lff",
800
+ "6lnb",
801
+ "6lqf",
802
+ "6lsg",
803
+ "6lts",
804
+ "6m5b",
805
+ "6m7v",
806
+ "6mcb",
807
+ "6mce",
808
+ "6mfn",
809
+ "6mig",
810
+ "6mpu",
811
+ "6nd6",
812
+ "6ne0",
813
+ "6neq",
814
+ "6nf8",
815
+ "6nld",
816
+ "6nsh",
817
+ "6nta",
818
+ "6nua",
819
+ "6nuh",
820
+ "6nuo",
821
+ "6nwy",
822
+ "6o0x",
823
+ "6o0y",
824
+ "6o5f",
825
+ "6o97",
826
+ "6oeb",
827
+ "6of1",
828
+ "6of6",
829
+ "6oj2",
830
+ "6ol3",
831
+ "6ole",
832
+ "6olg",
833
+ "6oli",
834
+ "6om0",
835
+ "6ope",
836
+ "6ord",
837
+ "6ovr",
838
+ "6ovy",
839
+ "6ow3",
840
+ "6oy5",
841
+ "6oy6",
842
+ "6ozi",
843
+ "6pbd",
844
+ "6pq7",
845
+ "6pqu",
846
+ "6pr5",
847
+ "6prv",
848
+ "6qhd",
849
+ "6qhi",
850
+ "6qtk",
851
+ "6qx1",
852
+ "6qzp",
853
+ "6r6p",
854
+ "6r8e",
855
+ "6rio",
856
+ "6rou",
857
+ "6rr7",
858
+ "6s3i",
859
+ "6swa",
860
+ "6ty9",
861
+ "6u81",
862
+ "6ufj",
863
+ "6ufk",
864
+ "6uin",
865
+ "6up0",
866
+ "6upx",
867
+ "6upy",
868
+ "6upz",
869
+ "6uq3",
870
+ "6va1",
871
+ "6va2",
872
+ "6va3",
873
+ "6va4",
874
+ "6var",
875
+ "6vrb",
876
+ "6vvj",
877
+ "6w0r",
878
+ "6wbr",
879
+ "6wlh",
880
+ "6wya",
881
+ "6xdv",
882
+ "6xdx",
883
+ "6xej",
884
+ "6xek",
885
+ "6xem",
886
+ "6xfc",
887
+ "6xfw",
888
+ "6xfy",
889
+ "6xgo",
890
+ "6xgw",
891
+ "6xjq",
892
+ "6xjw",
893
+ "6xjy",
894
+ "6xjz",
895
+ "6xki",
896
+ "6y39",
897
+ "6yal",
898
+ "6ydp",
899
+ "6yyt",
900
+ "6zm5",
901
+ "6zm6",
902
+ "6ztl",
903
+ "7a09",
904
+ "7a0r",
905
+ "7a0s",
906
+ "7a18",
907
+ "7ae1",
908
+ "7ae3",
909
+ "7aea",
910
+ "7am2",
911
+ "7amv",
912
+ "7aoh",
913
+ "7aoz",
914
+ "7ap8",
915
+ "7ap9",
916
+ "7aqc",
917
+ "7aqd",
918
+ "7as8",
919
+ "7as9",
920
+ "7asa",
921
+ "7b0c",
922
+ "7b0g",
923
+ "7b9v",
924
+ "7bzf",
925
+ "7c2k",
926
+ "7c9o",
927
+ "7cq4",
928
+ "7csw",
929
+ "7cuk",
930
+ "7d0y",
931
+ "7d0z",
932
+ "7dco",
933
+ "7dpe",
934
+ "7dq0",
935
+ "7dq8",
936
+ "7ecf",
937
+ "7ecg",
938
+ "7ech",
939
+ "7eh1",
940
+ "7eh2",
941
+ "7el7",
942
+ "7jfv",
943
+ "7jhr",
944
+ "7ji5",
945
+ "7ji8",
946
+ "7jim",
947
+ "7jio",
948
+ "7jj6",
949
+ "7jjw",
950
+ "7jnp",
951
+ "7jog",
952
+ "7jok",
953
+ "7jon",
954
+ "7jp6",
955
+ "7jp9",
956
+ "7jpb",
957
+ "7jrs",
958
+ "7js1",
959
+ "7js2",
960
+ "7ju1",
961
+ "7k51",
962
+ "7k52",
963
+ "7k54",
964
+ "7k55",
965
+ "7k5d",
966
+ "7k5l",
967
+ "7k78",
968
+ "7k98",
969
+ "7k9m",
970
+ "7ka0",
971
+ "7kab",
972
+ "7kee",
973
+ "7kha",
974
+ "7kqn",
975
+ "7kub",
976
+ "7l49",
977
+ "7l4c",
978
+ "7lys",
979
+ "7lyt",
980
+ "7m7y",
981
+ "7m7z",
982
+ "7m80",
983
+ "7m81",
984
+ "7m82",
985
+ "7mga",
986
+ "7mjw",
987
+ "7mjx",
988
+ "7mjy",
989
+ "7mkd",
990
+ "7mki",
991
+ "7mpi",
992
+ "7mpj",
993
+ "7mxx",
994
+ "7n8s",
995
+ "7nwi",
996
+ "7o0g",
997
+ "7o81",
998
+ "7ogv",
999
+ "7ohe",
1000
+ "7ohj",
1001
+ "7ohm",
1002
+ "7ol9",
1003
+ "7onb",
1004
+ "7oo3",
1005
+ "7oob",
1006
+ "7ope",
1007
+ "7oue",
1008
+ "7oy7",
1009
+ "7ozq",
1010
+ "7p0w",
1011
+ "7p3f",
1012
+ "7p8l",
1013
+ "7p9z",
1014
+ "7pli",
1015
+ "7pmm",
1016
+ "7pnt",
1017
+ "7pnu",
1018
+ "7pnv",
1019
+ "7pnw",
1020
+ "7po2",
1021
+ "7pu7",
1022
+ "7q7x",
1023
+ "7q7y",
1024
+ "7q7z",
1025
+ "7q80",
1026
+ "7q81",
1027
+ "7q82",
1028
+ "7qca",
1029
+ "7qd5",
1030
+ "7qh7",
1031
+ "7qi4",
1032
+ "7qi5",
1033
+ "7qi6",
1034
+ "7qqd",
1035
+ "7qqq",
1036
+ "7qqw",
1037
+ "7r5r",
1038
+ "7r6t",
1039
+ "7r6v",
1040
+ "7r97",
1041
+ "7rip",
1042
+ "7riw",
1043
+ "7rix",
1044
+ "7s38",
1045
+ "7sop",
1046
+ "7sr6",
1047
+ "7sum",
1048
+ "7sx5",
1049
+ "7tql",
1050
+ "7txc",
1051
+ "7u32",
1052
+ "7uo0",
1053
+ "7uo1",
1054
+ "7uo2",
1055
+ "7uo5",
1056
+ "7urk",
1057
+ "7usf",
1058
+ "7uzx",
1059
+ "7v9e",
1060
+ "7vbb",
1061
+ "7vo0",
1062
+ "7vrl",
1063
+ "7vtn",
1064
+ "7w5p",
1065
+ "7w5x",
1066
+ "7wb3",
1067
+ "7wju",
1068
+ "7x2z",
1069
+ "7x3a",
1070
+ "7x75",
1071
+ "7x9f",
1072
+ "7xdj",
1073
+ "7xht",
1074
+ "7xpl",
1075
+ "7xsz",
1076
+ "7xvn",
1077
+ "7yfe",
1078
+ "7yfq",
1079
+ "7ync",
1080
+ "7ypa",
1081
+ "7yuk",
1082
+ "7yul",
1083
+ "7yun",
1084
+ "7z1m",
1085
+ "7z1o",
1086
+ "7z1z",
1087
+ "7z2z",
1088
+ "7z4d",
1089
+ "7z4i",
1090
+ "7z4l",
1091
+ "7z5a",
1092
+ "7zew",
1093
+ "8a3w",
1094
+ "8a5p",
1095
+ "8a98",
1096
+ "8any",
1097
+ "8as6",
1098
+ "8as7",
1099
+ "8asd",
1100
+ "8asg",
1101
+ "8ask",
1102
+ "8axa",
1103
+ "8b3d",
1104
+ "8b3f",
1105
+ "8b4b",
1106
+ "8b4c",
1107
+ "8bf7",
1108
+ "8bf9",
1109
+ "8bge",
1110
+ "8bgh",
1111
+ "8bh4",
1112
+ "8bhj",
1113
+ "8bhl",
1114
+ "8bhn",
1115
+ "8bhp",
1116
+ "8bil",
1117
+ "8bim",
1118
+ "8bws",
1119
+ "8c41",
1120
+ "8cbo",
1121
+ "8cf2",
1122
+ "8ci5",
1123
+ "8crx",
1124
+ "8csh",
1125
+ "8cvm",
1126
+ "8d2m",
1127
+ "8d8k",
1128
+ "8d8l",
1129
+ "8d93",
1130
+ "8dex",
1131
+ "8df9",
1132
+ "8dfa",
1133
+ "8dfo",
1134
+ "8dfs",
1135
+ "8dp3",
1136
+ "8dqw",
1137
+ "8dr6",
1138
+ "8dzj",
1139
+ "8ee9",
1140
+ "8ej6",
1141
+ "8ejo",
1142
+ "8ejp",
1143
+ "8eku",
1144
+ "8fni",
1145
+ "8fyb",
1146
+ "8g5z",
1147
+ "8g9l",
1148
+ "8g9n",
1149
+ "8gcc",
1150
+ "8gzr",
1151
+ "8hag",
1152
+ "8hb1",
1153
+ "8hb3",
1154
+ "8hi1",
1155
+ "8hku",
1156
+ "8htx",
1157
+ "8hud",
1158
+ "8i3z",
1159
+ "8i44",
1160
+ "8i46",
1161
+ "8if5",
1162
+ "8ifo",
1163
+ "8ijc",
1164
+ "8ik5",
1165
+ "8ike",
1166
+ "8ilg",
1167
+ "8ili",
1168
+ "8iyq",
1169
+ "8j54",
1170
+ "8jkk",
1171
+ "8joz",
1172
+ "8k59",
1173
+ "8k8b",
1174
+ "8oir",
1175
+ "8ois",
1176
+ "8oit",
1177
+ "8oly",
1178
+ "8olz",
1179
+ "8om2",
1180
+ "8om3",
1181
+ "8om4",
1182
+ "8om9",
1183
+ "8ovj",
1184
+ "8ow4",
1185
+ "8p03",
1186
+ "8p09",
1187
+ "8p0j",
1188
+ "8p0k",
1189
+ "8p0n",
1190
+ "8pbl",
1191
+ "8pkl",
1192
+ "8pnf",
1193
+ "8pop",
1194
+ "8ppu",
1195
+ "8ppv",
1196
+ "8qie",
1197
+ "8qoz",
1198
+ "8qpe",
1199
+ "8qrn",
1200
+ "8qwe",
1201
+ "8qwf",
1202
+ "8r1x",
1203
+ "8r3v",
1204
+ "8r62",
1205
+ "8r63",
1206
+ "8r6u",
1207
+ "8r6w",
1208
+ "8r6y",
1209
+ "8r7f",
1210
+ "8r8p",
1211
+ "8r8r",
1212
+ "8rcl",
1213
+ "8reb",
1214
+ "8rm6",
1215
+ "8ro0",
1216
+ "8ro1",
1217
+ "8rxh",
1218
+ "8rxx",
1219
+ "8s1p",
1220
+ "8s1u",
1221
+ "8sh0",
1222
+ "8sh5",
1223
+ "8sqj",
1224
+ "8sqk",
1225
+ "8ssq",
1226
+ "8ssr",
1227
+ "8ssw",
1228
+ "8sy5",
1229
+ "8t2t",
1230
+ "8t6p",
1231
+ "8tac",
1232
+ "8thv",
1233
+ "8tom",
1234
+ "8tvy",
1235
+ "8u3b",
1236
+ "8u3m",
1237
+ "8u5j",
1238
+ "8u9l",
1239
+ "8u9r",
1240
+ "8u9x",
1241
+ "8ub7",
1242
+ "8ub8",
1243
+ "8ub9",
1244
+ "8uba",
1245
+ "8ubb",
1246
+ "8ubc",
1247
+ "8ubd",
1248
+ "8ube",
1249
+ "8udl",
1250
+ "8ukb",
1251
+ "8uvk",
1252
+ "8uw3",
1253
+ "8v1h",
1254
+ "8v5r",
1255
+ "8vat",
1256
+ "8vm8",
1257
+ "8vm9",
1258
+ "8vxa",
1259
+ "8vxc",
1260
+ "8vzm",
1261
+ "8w35",
1262
+ "8w76",
1263
+ "8w7w",
1264
+ "8w8n",
1265
+ "8wa1",
1266
+ "8wax",
1267
+ "8wce",
1268
+ "8wmm",
1269
+ "8wnb",
1270
+ "8wq5",
1271
+ "8wq7",
1272
+ "8wt8",
1273
+ "8wt9",
1274
+ "8wzc",
1275
+ "8x0s",
1276
+ "8x6g",
1277
+ "8xak",
1278
+ "8xca",
1279
+ "8xcc",
1280
+ "8xk7",
1281
+ "8xko",
1282
+ "8xs6",
1283
+ "8xs7",
1284
+ "8xs8",
1285
+ "8xs9",
1286
+ "8xsa",
1287
+ "8xsb",
1288
+ "8y07",
1289
+ "8y09",
1290
+ "8y0b",
1291
+ "8y0c",
1292
+ "8yb6",
1293
+ "8ydb",
1294
+ "8yeo",
1295
+ "8yh9",
1296
+ "8yha",
1297
+ "8yzt",
1298
+ "8z85",
1299
+ "8z8j",
1300
+ "8z8n",
1301
+ "8z8x",
1302
+ "8z90",
1303
+ "8z97",
1304
+ "8z9h",
1305
+ "8z9r",
1306
+ "9asn",
1307
+ "9aso",
1308
+ "9avr",
1309
+ "9axv",
1310
+ "9bf5",
1311
+ "9bvt",
1312
+ "9bz0",
1313
+ "9c0j",
1314
+ "9c4g",
1315
+ "9c9p",
1316
+ "9cgu",
1317
+ "9cpd",
1318
+ "9cpg",
1319
+ "9cpi",
1320
+ "9cpj",
1321
+ "9d7r",
1322
+ "9d7s",
1323
+ "9d7t",
1324
+ "9dll",
1325
+ "9dtr",
1326
+ "9ey0",
1327
+ "9ey2",
1328
+ "9gbv",
1329
+ "9gch",
1330
+ "9ggq",
1331
+ "9gs9"
1332
+ ]
structures.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc094c5b44bb23195c109c3f4c7ff1b0dbaf6fd59410abcd62c729bdae11264d
3
+ size 2183779817
structures.zip.sha256 ADDED
@@ -0,0 +1 @@
 
 
1
+ bc094c5b44bb23195c109c3f4c7ff1b0dbaf6fd59410abcd62c729bdae11264d structures.zip