Skip to content

Commit

Permalink
update indent and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ramprasadn committed Jan 29, 2024
1 parent 09999ba commit fe0ab74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ params {

//Germlinecnvcaller options
gcnv_scatter_content = 2
gcnv_ploidy_priors = "https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/illumina/gatk/contig_ploidy_priors_table.tsv"
gcnv_ploidy_priors = "https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/illumina/gatk/contig_ploidy_priors_table.tsv"

// Small reference genome
genome = null
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ params {
gcnv_scatter_content = 5000
gcnv_segmental_duplications = null

// Germlinecnvcaller options
// Gens options
gens_bin_length = 100

// CNVkit options
Expand Down
10 changes: 5 additions & 5 deletions subworkflows/local/gens_pon.nf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
include { GATK4_COLLECTREADCOUNTS } from '../../modules/nf-core/gatk4/collectreadcounts/main'
include { GATK4_CREATEREADCOUNTPANELOFNORMALS } from '../../modules/nf-core/gatk4/createreadcountpanelofnormals/main'
include { GATK4_PREPROCESSINTERVALS } from '../../modules/nf-core/gatk4/preprocessintervals/main'
include { PICARD_CREATESEQUENCEDICTIONARY } from '../../modules/nf-core/picard/createsequencedictionary/main'
include { SAMTOOLS_FAIDX } from '../../modules/nf-core/samtools/faidx/main'
include { SAMTOOLS_INDEX } from '../../modules/nf-core/samtools/index/main'
include { GATK4_CREATEREADCOUNTPANELOFNORMALS } from '../../modules/nf-core/gatk4/createreadcountpanelofnormals/main'

workflow GENS_PON {
take:
Expand Down Expand Up @@ -80,12 +80,12 @@ workflow GENS_PON {

GATK4_CREATEREADCOUNTPANELOFNORMALS (ch_readcounts_out)

ch_versions = ch_versions.mix(SAMTOOLS_FAIDX.out.versions)
ch_versions = ch_versions.mix(PICARD_CREATESEQUENCEDICTIONARY.out.versions)
ch_versions = ch_versions.mix(SAMTOOLS_INDEX.out.versions.first())
ch_versions = ch_versions.mix(GATK4_PREPROCESSINTERVALS.out.versions)
ch_versions = ch_versions.mix(GATK4_COLLECTREADCOUNTS.out.versions.first())
ch_versions = ch_versions.mix(GATK4_CREATEREADCOUNTPANELOFNORMALS.out.versions.first())
ch_versions = ch_versions.mix(GATK4_PREPROCESSINTERVALS.out.versions)
ch_versions = ch_versions.mix(PICARD_CREATESEQUENCEDICTIONARY.out.versions)
ch_versions = ch_versions.mix(SAMTOOLS_FAIDX.out.versions)
ch_versions = ch_versions.mix(SAMTOOLS_INDEX.out.versions.first())

emit:
genspon = GATK4_CREATEREADCOUNTPANELOFNORMALS.out.pon
Expand Down

0 comments on commit fe0ab74

Please sign in to comment.