https://github.com/MDverse/mdda
Tip revision: 8284f29cf578f83bcd7cf4bd0ebe370a5d45e95f authored by Pierre Poulain on 16 May 2024, 16:03:16 UTC
Update Python and Jupyter Lab version
Update Python and Jupyter Lab version
Tip revision: 8284f29
get_data.sh
#! /usr/bin/env bash
# This script downloads the data collection and stores it in the data folder.
DATA_URL="https://zenodo.org/record/7856806"
for name in "datasets.parquet" "files.parquet" "gromacs_gro_files.parquet" "gromacs_mdp_files.parquet" "gromacs_xtc_files.parquet" "data_model_parquet.md"
do
wget "${DATA_URL}/files/${name}" -O "data/${name}"
done
tree --du -h data/