Skip to content
Snippets Groups Projects
Unverified Commit 8bebb4a1 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

fix input and output for bedtools and samtools

parent 70c7d906
No related branches found
No related tags found
No related merge requests found
......@@ -28,11 +28,10 @@ process bam_to_fastq_singleend {
publishDir "results/fasta/", mode: 'copy'
input:
path fasta
path bed
path bam
output:
path "*_extracted.fasta", emit: fasta
path "*.fastq", emit: fastq
script:
"""
......@@ -48,11 +47,10 @@ process bam_to_fastq_paired_end {
publishDir "results/fasta/", mode: 'copy'
input:
path fasta
path bed
path bam
output:
path "*_extracted.fasta", emit: fasta
path "*.fastq", emit: fasta
script:
"""
......
......@@ -25,7 +25,6 @@ process filter_bam_mapped {
input:
tuple val(file_id), path(bam)
path bed
output:
tuple val(file_id), path("*_filtered.bam"), emit: bam
......@@ -42,7 +41,6 @@ process filter_bam_unmapped {
input:
tuple val(file_id), path(bam)
path bed
output:
tuple val(file_id), path("*_filtered.bam"), emit: bam
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment