-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finish code exomedepth count per sample
- Loading branch information
1 parent
90000d7
commit eba5f5b
Showing
12 changed files
with
153 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: exomedepth_count | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
|
||
dependencies: | ||
- r=3.6=r36_1003 | ||
- r-optparse=1.6.4=r36h6115d3f_0 | ||
- r-exomedepth=1.1.12=r36h6786f55_0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
// Convert CRAM files | ||
include { COUNT } from '../../../modules/local/exomedepth/count/main' | ||
|
||
workflow EXOMEDEPTH_COUNT { | ||
|
||
take: | ||
ch_bam // channel: [mandatory] [ val(meta), path(bam), path(bai) ] | ||
exon_target // channel: [mandatory] [ val(prefix), path(bed) ] | ||
|
||
main: | ||
|
||
ch_versions = Channel.empty() | ||
|
||
// | ||
// convert CRAM files to BAM files | ||
// | ||
COUNT(ch_bam, exon_target) | ||
ch_versions = ch_versions.mix(COUNT.out.versions) | ||
|
||
emit: | ||
count = COUNT.out.counts // channel: [ val(meta), [ txt ] ] | ||
|
||
versions = ch_versions // channel: [ versions.yml ] | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.