Skip to content

Commit

Permalink
Adjusted extract_reads_id for new subworkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RaqManzano committed Sep 10, 2023
1 parent b13f956 commit c863626
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
process EXTRACT_READ_IDS {
process SAMTOOLS_EXTRACT_READ_IDS {
tag "$meta.id"
label 'process_low'
label 'process_single'

conda (params.enable_conda ? "bioconda::samtools=1.15.1" : null)
conda "bioconda::samtools=1.15.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/samtools:1.15.1--h1170115_0' :
'quay.io/biocontainers/samtools:1.15.1--h1170115_0' }"

input:
tuple val(meta), path(input), path(index)
tuple val(meta), path(bed)
tuple val(meta), path(input), path(index), path(bed)

output:
tuple val(meta), path("*_IDs_all.txt") , emit: read_ids
Expand Down

0 comments on commit c863626

Please sign in to comment.