Skip to content

Commit

Permalink
fix alphafold2_ptm
Browse files Browse the repository at this point in the history
  • Loading branch information
alex000kim committed Oct 28, 2024
1 parent 9bea0dc commit 2ada069
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The pipeline takes care of downloading the databases and parameters required by
--colabfold_db <null (default) | PATH> \
--num_recycles_colabfold 3 \
--use_amber <true/false> \
--colabfold_model_preset "AlphaFold2-ptm" \
--colabfold_model_preset "alphafold2_ptm" \
--use_gpu <true/false> \
--db_load_mode 0
-profile <docker/singularity/podman/shifter/charliecloud/conda/institute>
Expand All @@ -115,7 +115,7 @@ The pipeline takes care of downloading the databases and parameters required by
--colabfold_db <null (default) | PATH> \
--num_recycles_colabfold 3 \
--use_amber <true/false> \
--colabfold_model_preset "AlphaFold2-ptm" \
--colabfold_model_preset "alphafold2_ptm" \
--use_gpu <true/false> \
-profile <docker/singularity/podman/shifter/charliecloud/conda/institute>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ nextflow run nf-core/proteinfold \
--colabfold_db <null (default) | DB_PATH> \
--num_recycles_colabfold 3 \
--use_amber <true/false> \
--colabfold_model_preset "AlphaFold2-ptm" \
--colabfold_model_preset "alphafold2_ptm" \
--use_gpu <true/false> \
--db_load_mode 0 \
-profile <docker/singularity/.../institute>
Expand All @@ -254,7 +254,7 @@ nextflow run nf-core/proteinfold \
--colabfold_db <null (default) | DB_PATH> \
--num_recycles_colabfold 3 \
--use_amber <true/false> \
--colabfold_model_preset "AlphaFold2-ptm" \
--colabfold_model_preset "alphafold2_ptm" \
--use_gpu <true/false> \
-profile <docker/singularity/.../institute>
```
Expand Down
2 changes: 1 addition & 1 deletion workflows/colabfold.nf
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ workflow COLABFOLD {
//
// MODULE: Run mmseqs
//
if (params.colabfold_model_preset != 'AlphaFold2-ptm') {
if (params.colabfold_model_preset != 'alphafold2_ptm') {
MULTIFASTA_TO_CSV(
ch_fasta
)
Expand Down

0 comments on commit 2ada069

Please sign in to comment.