Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenzk
AlphaFold2_jax
Commits
53e7b48f
Commit
53e7b48f
authored
Jul 13, 2023
by
zhuwenwen
Browse files
fix download datasets error
parent
7d0d4625
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
README.md
README.md
+1
-4
scripts/download_pdb_mmcif.sh
scripts/download_pdb_mmcif.sh
+4
-4
No files found.
README.md
View file @
53e7b48f
...
...
@@ -14,6 +14,7 @@ AlphaFold2是一个用于预测蛋白质三维结构的深度学习模型。
我们提供了一个脚本download_all_data.sh用于下载使用的数据集和模型文件:
git clone http://developer.hpccube.com/codes/modelzoo/alphafold2.git
./scripts/download_all_data.sh 数据集下载目录
## 推理
...
...
@@ -27,10 +28,6 @@ AlphaFold2是一个用于预测蛋白质三维结构的深度学习模型。
`source /opt/openmm-hip/env.sh`
测试目录:
`/opt/docker/test`
### 推理
我们分别提供了基于Jax的单体和多体的推理脚本,版本依赖:
*
Jax(DCU版本) >= 0.3.14
...
...
scripts/download_pdb_mmcif.sh
View file @
53e7b48f
...
...
@@ -45,9 +45,9 @@ echo " * rsync.ebi.ac.uk::pub/databases/pdb/data/structures/divided/mmCIF/ (Eur
echo
" * ftp.pdbj.org::ftp_data/structures/divided/mmCIF/ (Asia)"
echo
"or see https://www.wwpdb.org/ftp/pdb-ftp-sites for more download options."
mkdir
--parents
"
${
RAW_DIR
}
"
#
rsync --recursive --links --perms --times --compress --info=progress2 --delete --port=33444 \
#
rsync.rcsb.org::ftp_data/structures/divided/mmCIF/ \
#
"${RAW_DIR}"
rsync
--recursive
--links
--perms
--times
--compress
--info
=
progress2
--delete
--port
=
33444
\
rsync.rcsb.org::ftp_data/structures/divided/mmCIF/
\
"
${
RAW_DIR
}
"
# rsync --recursive --links --perms --times --compress --info=progress2 --delete --port=33444 \
# data.pdbj.org::ftp_data/structures/divided/mmCIF/ \
...
...
@@ -59,7 +59,7 @@ find "${RAW_DIR}/" -type f -iname "*.gz" -exec gunzip {} +
echo
"Flattening all mmCIF files..."
mkdir
--parents
"
${
MMCIF_DIR
}
"
find
"
${
RAW_DIR
}
"
-type
d
-empty
-delete
# Delete empty directories.
for
subdir
in
"
${
RAW_DIR
}
"
/
*
;
do
for
subdir
in
"
${
RAW_DIR
}
"
;
do
mv
"
${
subdir
}
/"
*
.cif
"
${
MMCIF_DIR
}
"
done
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment