Skip to content

Commit e667765

Browse files
committed
genomecov from modules
1 parent 5f9d3ce commit e667765

File tree

8 files changed

+207
-204
lines changed

8 files changed

+207
-204
lines changed

modules.json

+193-69
Large diffs are not rendered by default.

modules/nf-core/bedtools/genomecov/main.nf

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bedtools/genomecov/nextflow.config

-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bedtools/genomecov/tests/main.nf.test

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bedtools/sort/environment.yml

-7
This file was deleted.

modules/nf-core/bedtools/sort/main.nf

-54
This file was deleted.

modules/nf-core/bedtools/sort/meta.yml

-54
This file was deleted.

workflows/rnaseq/main.nf

+6-15
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ include { getInferexperimentStrandedness } from '../../subworkflows/local/utils_
4040
include { CAT_FASTQ } from '../../modules/nf-core/cat/fastq'
4141
include { BEDTOOLS_GENOMECOV as BEDTOOLS_GENOMECOV_FW } from '../../modules/nf-core/bedtools/genomecov'
4242
include { BEDTOOLS_GENOMECOV as BEDTOOLS_GENOMECOV_REV } from '../../modules/nf-core/bedtools/genomecov'
43-
include { BEDTOOLS_SORT as BEDTOOLS_SORT_FW } from '../../modules/nf-core/bedtools/sort'
44-
include { BEDTOOLS_SORT as BEDTOOLS_SORT_REV } from '../../modules/nf-core/bedtools/sort'
4543
include { BBMAP_BBSPLIT } from '../../modules/nf-core/bbmap/bbsplit'
4644
include { SAMTOOLS_SORT } from '../../modules/nf-core/samtools/sort'
4745
include { PRESEQ_LCEXTRAP } from '../../modules/nf-core/preseq/lcextrap'
@@ -644,21 +642,14 @@ workflow RNASEQ {
644642
BEDTOOLS_GENOMECOV_FW (
645643
ch_genomecov_input,
646644
[],
647-
'bedGraph'
645+
'bedGraph',
646+
true
648647
)
649-
BEDTOOLS_SORT_FW (
650-
BEDTOOLS_GENOMECOV_FW.out.genomecov,
651-
[]
652-
)
653-
654648
BEDTOOLS_GENOMECOV_REV (
655649
ch_genomecov_input,
656650
[],
657-
'bedGraph'
658-
)
659-
BEDTOOLS_SORT_REV (
660-
BEDTOOLS_GENOMECOV_REV.out.genomecov,
661-
[]
651+
'bedGraph',
652+
true
662653
)
663654

664655
ch_versions = ch_versions.mix(BEDTOOLS_GENOMECOV_FW.out.versions.first())
@@ -667,13 +658,13 @@ workflow RNASEQ {
667658
// SUBWORKFLOW: Convert bedGraph to bigWig
668659
//
669660
BEDGRAPH_BEDCLIP_BEDGRAPHTOBIGWIG_FORWARD (
670-
BEDTOOLS_SORT_FW.out.sorted,
661+
BEDTOOLS_GENOMECOV_FW.out.genomecov,
671662
ch_chrom_sizes
672663
)
673664
ch_versions = ch_versions.mix(BEDGRAPH_BEDCLIP_BEDGRAPHTOBIGWIG_FORWARD.out.versions)
674665

675666
BEDGRAPH_BEDCLIP_BEDGRAPHTOBIGWIG_REVERSE (
676-
BEDTOOLS_SORT_REV.out.sorted,
667+
BEDTOOLS_GENOMECOV_REV.out.genomecov,
677668
ch_chrom_sizes
678669
)
679670
}

0 commit comments

Comments
 (0)