Skip to content

Commit a12e038

Browse files
committed
Updated makegraph to makegraph2
1 parent 29c284f commit a12e038

File tree

10 files changed

+7
-154
lines changed

10 files changed

+7
-154
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525

2626
### Fixed
2727

28-
- [#1391](https://github.com/nf-core/sarek/pull/1391) - Fixed input channel for ASSESS_SIGNIFICANCE module, updated makegraph to makegraph2.
28+
- [#1400](https://github.com/nf-core/sarek/pull/1400) - Fixed input channel for ASSESS_SIGNIFICANCE module, updated makegraph to makegraph2.
2929
- [#1334](https://github.com/nf-core/sarek/pull/1334) - Remove extra v, when reporting tower runs on slack
3030
- [#1335](https://github.com/nf-core/sarek/pull/1335) - Add docs and validation for bcftools annotation parameters
3131
- [#1345](https://github.com/nf-core/sarek/pull/1345) - Preserve STDERR for easier debugging

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ We thank the following people for their extensive assistance in the development
151151
- [Malin Larsson](https://github.com/malinlarsson)
152152
- [Marcel Martin](https://github.com/marcelm)
153153
- [Nick Smith](https://github.com/nickhsmith)
154+
- [Nicolas Schcolnicov](https://github.com/nschcolnicov)
154155
- [Nilesh Tawari](https://github.com/nilesh-tawari)
155156
- [Olga Botvinnik](https://github.com/olgabot)
156157
- [Oskar Wacker](https://github.com/WackerO)

Diff for: conf/modules/controlfreec.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ process {
5050
]
5151
}
5252

53-
withName: 'MAKEGRAPH' {
53+
withName: 'MAKEGRAPH2' {
5454
ext.args = { "${params.cf_ploidy}" }
5555
publishDir = [
5656
mode: params.publish_dir_mode,

Diff for: modules.json

-6
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,6 @@
107107
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
108108
"installed_by": ["modules"]
109109
},
110-
"controlfreec/makegraph": {
111-
"branch": "master",
112-
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
113-
"installed_by": ["modules"],
114-
"patch": "modules/nf-core/controlfreec/makegraph/controlfreec-makegraph.diff"
115-
},
116110
"controlfreec/makegraph2": {
117111
"branch": "master",
118112
"git_sha": "a7bae48d8bccfae99e3b862fa07bbd50a8df6b82",

Diff for: modules/nf-core/controlfreec/makegraph/controlfreec-makegraph.diff

-23
This file was deleted.

Diff for: modules/nf-core/controlfreec/makegraph/environment.yml

-7
This file was deleted.

Diff for: modules/nf-core/controlfreec/makegraph/main.nf

-52
This file was deleted.

Diff for: modules/nf-core/controlfreec/makegraph/meta.yml

-60
This file was deleted.

Diff for: subworkflows/local/bam_variant_calling_tumor_only_controlfreec/main.nf

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include { CONTROLFREEC_FREEC as FREEC_TUMORONLY } from '../../.
88
include { CONTROLFREEC_ASSESSSIGNIFICANCE as ASSESS_SIGNIFICANCE } from '../../../modules/nf-core/controlfreec/assesssignificance/main'
99
include { CONTROLFREEC_FREEC2BED as FREEC2BED } from '../../../modules/nf-core/controlfreec/freec2bed/main'
1010
include { CONTROLFREEC_FREEC2CIRCOS as FREEC2CIRCOS } from '../../../modules/nf-core/controlfreec/freec2circos/main'
11-
include { CONTROLFREEC_MAKEGRAPH as MAKEGRAPH } from '../../../modules/nf-core/controlfreec/makegraph/main'
11+
include { CONTROLFREEC_MAKEGRAPH2 as MAKEGRAPH2 } from '../../../modules/nf-core/controlfreec/makegraph2/main'
1212

1313
workflow BAM_VARIANT_CALLING_TUMOR_ONLY_CONTROLFREEC {
1414
take:
@@ -30,13 +30,13 @@ workflow BAM_VARIANT_CALLING_TUMOR_ONLY_CONTROLFREEC {
3030
ASSESS_SIGNIFICANCE(FREEC_TUMORONLY.out.CNV.join(FREEC_TUMORONLY.out.ratio, failOnDuplicate: true, failOnMismatch: true))
3131
FREEC2BED(FREEC_TUMORONLY.out.ratio)
3232
FREEC2CIRCOS(FREEC_TUMORONLY.out.ratio)
33-
MAKEGRAPH(FREEC_TUMORONLY.out.ratio.join(FREEC_TUMORONLY.out.BAF, failOnDuplicate: true, failOnMismatch: true))
33+
MAKEGRAPH2(FREEC_TUMORONLY.out.ratio.join(FREEC_TUMORONLY.out.BAF, failOnDuplicate: true, failOnMismatch: true))
3434

3535
ch_versions = ch_versions.mix(FREEC_TUMORONLY.out.versions)
3636
ch_versions = ch_versions.mix(ASSESS_SIGNIFICANCE.out.versions)
3737
ch_versions = ch_versions.mix(FREEC2BED.out.versions)
3838
ch_versions = ch_versions.mix(FREEC2CIRCOS.out.versions)
39-
ch_versions = ch_versions.mix(MAKEGRAPH.out.versions)
39+
ch_versions = ch_versions.mix(MAKEGRAPH2.out.versions)
4040

4141
emit:
4242
versions = ch_versions

Diff for: tests/config/pytesttags.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ controlfreec:
248248
- modules/nf-core/controlfreec/freec/**
249249
- modules/nf-core/controlfreec/freec2bed/**
250250
- modules/nf-core/controlfreec/freec2circos/**
251-
- modules/nf-core/controlfreec/makegraph/**
251+
- modules/nf-core/controlfreec/makegraph2/**
252252
- modules/nf-core/samtools/mpileup/**
253253
- subworkflows/local/bam_variant_calling_mpileup/**
254254
- subworkflows/local/bam_variant_calling_somatic_all/**

0 commit comments

Comments
 (0)