kalininalab / alphafold_non_docker

AlphaFold2 non-docker setup
325 stars 119 forks source link

Wrong variable names in download_database.sh #27

Closed Moa53 closed 2 years ago

Moa53 commented 2 years ago

Hello,

On line 77, you forgot the $ for uniprot and pdb_seqres mkdir

mkdir "$params" "$mgnify" "$pdb70" "$pdb_mmcif" "$mmcif_download_dir" "$mmcif_files" "$uniclust30" "$uniref90" "uniprot" "pdb_seqres"

should be

mkdir "$params" "$mgnify" "$pdb70" "$pdb_mmcif" "$mmcif_download_dir" "$mmcif_files" "$uniclust30" "$uniref90" "$uniprot" "$pdb_seqres"

Greetings, David

sanjaysrikakulam commented 2 years ago

Hi @Moa53

Thank you! Its fixed now!