Skip to content

Cluster #17

Merged
merged 14 commits into from
Dec 21, 2018
Prev Previous commit
Next Next commit
reduce_bed renamed to reduce_sequence
HendrikSchultheis committed Dec 19, 2018
commit 17308687327a8cd17e0b7af3916a58073152f344
6 changes: 3 additions & 3 deletions pipeline.nf
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
params.max_size_fp=100

//clustering
//reduce_bed
//reduce_sequence
params.kmer=10
params.aprox_motif_len=10
params.motif_occurence=1
@@ -268,7 +268,7 @@ process overlap_with_known_TFBS {

/*
*/
process reduce_bed {
process reduce_sequence {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a small description to the process reduce_sequence and clustering.

conda "${path_env}"
echo true
publishDir "${params.out}/cluster/reduced_bed/", mode: 'copy'
@@ -281,7 +281,7 @@ process reduce_bed {

script:
"""
Rscript ${path_bin}/reduce_bed.R -i ${bed} -k ${params.kmer} -m ${params.aprox_motif_len} -o ${name}_reduced.bed -t ${params.threads} -f ${params.motif_occurence} -s ${params.min_seq_length}
Rscript ${path_bin}/reduce_sequence.R -i ${bed} -k ${params.kmer} -m ${params.aprox_motif_len} -o ${name}_reduced.bed -t ${params.threads} -f ${params.motif_occurence} -s ${params.min_seq_length}
"""
}