Skip to content

Commit

Permalink
debug python dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kxz18 committed Dec 26, 2022
1 parent 9db81f7 commit f039994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/prepare_data_rabd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ echo "Summary file at ${SUMMARY}. SAbDab file at ${SABDAB}. PDB folder at ${PDB_
ALL=${DATA_DIR}/rabd_all.json

# download data
python data/download.py \
python -m data.download.py \
--summary ${SUMMARY} \
--pdb_dir ${PDB_DIR} \
--fout ${ALL} \
Expand All @@ -45,7 +45,7 @@ do
python data/split.py \
--data ${SABDAB} \
--rabd ${ALL} \
--out_dir ${PROCESS_DIR} \
--out_dir ${PROCESS_DIR} \
--valid_ratio 0.1 \
--cdr ${CDR} \
--filter 111
Expand Down
4 changes: 2 additions & 2 deletions scripts/prepare_data_skempi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ALL=${DATA_DIR}/skempi_all.json
# the handling logic is mostly the same as rabd

# download data
python data/download.py \
python -m data.download.py \
--summary ${SUMMARY} \
--pdb_dir ${PDB_DIR} \
--fout ${ALL} \
Expand All @@ -50,4 +50,4 @@ python data/split.py \
# process
python data/dataset.py --dataset ${DATA_DIR}/skempi_all.json
python data/dataset.py --dataset ${DATA_DIR}/valid.json
python data/dataset.py --dataset ${DATA_DIR}/train.json
python data/dataset.py --dataset ${DATA_DIR}/train.json

0 comments on commit f039994

Please sign in to comment.