Skip to content

Commit

Permalink
removed debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Boehm committed Aug 1, 2024
1 parent 9e1717e commit 74a243a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ process {
}

withName: '.*:FIND_CIRC:UNIFY' {
// Keep only rows with UNAMBIGUOUS_BP and ANCHOR_UNIQUE in $18
ext.args = "-v FS='\\t' -v OFS='\\t' '{ if (\$18 ~ /UNAMBIGUOUS_BP/ && \$18 ~ /ANCHOR_UNIQUE/) { print \$1, \$2, \$3, \$1 \":\" \$2 \"-\" \$3 \":\" \$6, \$5, \$6 } }'"
// Keep only rows with CIRCULAR, UNAMBIGUOUS_BP and ANCHOR_UNIQUE in $18
ext.args = "-v FS='\\t' -v OFS='\\t' '{ if (\$18 ~ /CIRCULAR/ && \$18 ~ /UNAMBIGUOUS_BP/ && \$18 ~ /ANCHOR_UNIQUE/) { print \$1, \$2, \$3, \$1 \":\" \$2 \"-\" \$3 \":\" \$6, \$5, \$6 } }'"
ext.suffix = "find_circ.bed"
publishDir = [
path: { "${params.outdir}/circrna_discovery/find_circ/${meta.id}" },
Expand Down
2 changes: 0 additions & 2 deletions subworkflows/local/benchmarking.nf
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ workflow BENCHMARKING {
benchmarking: meta.benchmarking], bed]}
.groupTuple()

ch_all.view {"all: $it"}

SORT(ch_all)

BEDTOOLS_MERGE(SORT.out.sorted).bed.branch{ meta, bed ->
Expand Down

0 comments on commit 74a243a

Please sign in to comment.