Skip to content

Commit

Permalink
readded missing module configs after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Boehm committed Jul 18, 2024
1 parent 3039a80 commit 4265950
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,19 @@ process {
ext.suffix = "_benchmarking.tidy.bed"
}

withName: '.*:BENCHMARKING:SORT' {
ext.args = "-k 1,1 -k2,2n -k3,3n -u"
ext.suffix = "combined.bed"
}

withName: '.*:BENCHMARKING:BEDTOOLS_MERGE' {
ext.args = "-s -c 6 -o distinct"
}

withName: '.*:BENCHMARKING:BEDTOOLS_GENOMECOV' {
ext.args = "-dz"
}

withName: COMBINE_TRANSCRIPTOME_GTFS {
ext.args = "-k 1,1 -k4,4n -k5,5n"
ext.suffix = "gtf"
Expand Down
1 change: 1 addition & 0 deletions subworkflows/local/benchmarking.nf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ workflow BENCHMARKING {
benchmarking: meta.benchmarking], bed]}
.groupTuple()

ch_all.view {"all: $it"}

SORT(ch_all)

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/circrna_discovery.nf
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ workflow CIRCRNA_DISCOVERY {


emit:
tool_bed = ANNOTATION.out.merged_bed
circrna_bed12 = ANNOTATION.out.merged_bed
fasta = ADD_BACKSPLICE.out.output
annotation_bed = ANNOTATION.out.bed
annotation_gtf = ANNOTATION.out.gtf
Expand Down

0 comments on commit 4265950

Please sign in to comment.