Skip to content

Commit

Permalink
add bootstrap parametrization
Browse files Browse the repository at this point in the history
  • Loading branch information
hoelzer committed Mar 6, 2022
1 parent 50547cb commit 6544492
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/raxml.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ process raxml {

script:
"""
#raxmlHPC-PTHREADS-SSE3 -T ${task.cpus} -f a -x 1234 -p 1234 -s coreGenome_mafft.aln -n aa -m PROTGAMMAWAG -N 100
raxml-ng --all --threads ${task.cpus} --msa coreGenome_mafft.aln --prefix coreGenome_mafft --msa-format FASTA --model PROTGTR+G --bs-trees 100
#raxmlHPC-PTHREADS-SSE3 -T ${task.cpus} -f a -x 1234 -p 1234 -s ${aln} -n aa -m PROTGAMMAWAG -N ${params.bootstrap}
raxml-ng --all --threads ${task.cpus} --msa ${aln} --prefix coreGenome_mafft --msa-format FASTA --model PROTGTR+G --bs-trees ${params.bootstrap}
"""
}

1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ params {
heigth = 8
width = 10
tree = false
bootstrap = 100
sets = false
tmlim = 240 // ILP solve time limit in seconds

Expand Down
1 change: 1 addition & 0 deletions ribap.nf
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ def helpMSG() {
--tree build tree based on the core genome?
Sure thing, We will use RAxML for this.
Be aware, this will take a lot of time. [default: $params.tree]
--bootstrap Bootstrap value for tree building (increases time!). [default $params.bootstrap]
${c_yellow}UpSet plot:${c_reset}
--sets FASTA simpleNames for genomes that should be
Expand Down

0 comments on commit 6544492

Please sign in to comment.