- Make sure you have Git LFS installed:
sudo apt-get install git-lfs
# Initialize Git LFS
git lfs install
- Navigate to your
DATA_ROOT and clone the source:
GIT_LFS_SKIP_SMUDGE=1 git clone https://www.modelscope.cn/datasets/fudan-generative-vision/dynamicPDB.git dynamicPDB_raw
- Download data with a specific
protein_id, for example 1a62_A:
cd dynamicPDB_raw
git lfs pull --include="{protein_id}/*"
- Merge the split-volume compression into one file and then unzip the
.tar.gz file:
cat {protein_id}/{protein_id}.tar.gz.part* > {protein_id}/{protein_id}.tar.gz
cd ${Your Storage Root}
mkdir dynamicPDB # ignore if directory exists
tar -xvzf dynamicPDB_raw/{protein_id}/{protein_id}.tar.gz -C dynamicPDB
Ok! Now we have the simulation data for protein_id.
Note: Sufficient storage space is required for the data. For 1a62_A, 33GB is needed for the unzipped files and 24GB for the zipped files.
sudo apt-get install git-lfs # Initialize Git LFS git lfs installDATA_ROOTand clone the source:protein_id, for example1a62_A:.tar.gzfile:Ok! Now we have the simulation data for
protein_id.Note: Sufficient storage space is required for the data. For
1a62_A, 33GB is needed for the unzipped files and 24GB for the zipped files.