Skip to content

Commit

Permalink
added parameter to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
renewiegandt committed Dec 3, 2018
1 parent 476df0c commit a5259fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline.nf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ process glam2 {

script:
"""
glam2 n ${fasta} -O . -a 10 -b 20 -z 5
glam2 n ${fasta} -O . -a ${params.motif_min_len} -b ${params.motif_max_len} -z 5
"""
}

Expand All @@ -138,7 +138,7 @@ process tomtom {

script:
"""
tomtom ${meme} ${jaspar_db} -thresh 0.01 -text --norc | sed '/^#/ d' | sed '/^\$/d' > ${name}_known_motif.tsv
tomtom ${meme} ${jaspar_db} -thresh ${params.tomtom_treshold} -text --norc | sed '/^#/ d' | sed '/^\$/d' > ${name}_known_motif.tsv
"""
}

Expand Down

0 comments on commit a5259fd

Please sign in to comment.