mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Changing fasta_sizes by chrom_sizes input path for genomecov
This commit is contained in:
parent
9d79d64eb9
commit
0ffa739cd0
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ process GENOMECOV {
|
|||
|
||||
input:
|
||||
path (bam)
|
||||
path (fasta_sizes)
|
||||
path (chrom_sizes)
|
||||
val (genomecov_args)
|
||||
|
||||
output:
|
||||
|
@ -13,6 +13,6 @@ process GENOMECOV {
|
|||
|
||||
script:
|
||||
"""
|
||||
bedtools genomecov -ibam ${bam} -g ${fasta_sizes} ${genomecov_args}
|
||||
bedtools genomecov -ibam ${bam} -g ${chrom_sizes} ${genomecov_args}
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ input:
|
|||
type: file
|
||||
description: Input genomic coordinates file
|
||||
pattern: "*.{bam}"
|
||||
- fasta_sizes:
|
||||
- chrom_sizes:
|
||||
type: file
|
||||
description: Genome chromosome sizes
|
||||
pattern: "*.{txt,sizes}"
|
||||
|
|
Loading…
Reference in a new issue