Skip to content

Commit 77ca9a4

Browse files
Implemented Joses PR review suggestions
1 parent cb5f013 commit 77ca9a4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • modules/local
  • subworkflows/local/bam_peaks_call_qc_annotate_macs3_homer

modules/local/gtf2bed/main.nf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ process GTF2BED {
1212

1313
output:
1414
path '*.bed' , emit: bed
15-
tuple val({"${task.process}"}), val('perl'), eval("perl -V:version | sed \"s/version='//; s/';//\""), topic:versions, emit: versions_perl
16-
15+
tuple val("${task.process}"), val('perl'), eval("perl -V:version | sed \"s/version='//; s/';//\""), topic:versions, emit: versions_perl
1716

1817
when:
1918
task.ext.when == null || task.ext.when

modules/local/multiqc_custom_phantompeakqualtools/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
process MULTIQC_CUSTOM_PHANTOMPEAKQUALTOOLS {
22
tag "$meta.id"
3-
conda "conda-forge::r-base=4.3.3"
3+
conda "${moduleDir}/environment.yml"
44
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
55
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/c7/c73daa0b0040137fbea15fc8ee54c9bf4e0a9c5e9412cc7c13f7b38cc9c8bbd9/data':
66
'community.wave.seqera.io/library/r-base:4.5.3--6814a4ccafc04d08' }"

subworkflows/local/bam_peaks_call_qc_annotate_macs3_homer/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ workflow BAM_PEAKS_CALL_QC_ANNOTATE_MACS3_HOMER {
9898
ch_gtf
9999
)
100100
ch_homer_annotatepeaks = HOMER_ANNOTATEPEAKS.out.txt
101+
ch_versions = ch_versions.mix(HOMER_ANNOTATEPEAKS.out.versions.first())
101102

102103
if (!skip_peak_qc) {
103104
//

0 commit comments

Comments
 (0)