Skip to content

Commit

Permalink
Update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Feb 15, 2024
1 parent eda6f6f commit 0d9516d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

nextflow.enable.dsl = 2

include { VNTR_CALLER } from './workflows/vntr-caller'
include { VNTR_CALLING } from './workflows/vntr-calling'

/*
========================================================================================
Expand All @@ -19,5 +19,5 @@ include { VNTR_CALLER } from './workflows/vntr-caller'
*/

workflow {
VNTR_CALLER ()
VNTR_CALLING ()
}
8 changes: 4 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
docker.enabled = true

manifest {
name = 'vntr-caller-nf'
name = 'vntr-calling-nf'
version = '0.4.7'
description = 'Nextflow pipeline to resolve variants in VNTRS from sequencing data'
author = 'Sebastian Schönherr'
homePage = 'https://github.com/genepi/vntr-caller-nf'
homePage = 'https://github.com/genepi/vntr-calling-nf'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
}
Expand All @@ -32,7 +32,7 @@ params {

}

process.container = 'quay.io/genepi/vntr-caller-nf:v0.4.7'
process.container = 'quay.io/genepi/vntr-calling-nf:v0.4.7'


// Load base.config by default for all pipelines
Expand All @@ -54,7 +54,7 @@ profiles {
}

development {
process.container = 'genepi/vntr-caller-nf:latest'
process.container = 'genepi/vntr-calling-nf:latest'
docker.enabled = true
docker.userEmulation = true
resume = true
Expand Down
2 changes: 1 addition & 1 deletion workflows/vntr-caller.nf → workflows/vntr-calling.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include { CALL_VARIANTS_MUTSERVE} from '../modules/local/call_variants_mutserve'
include { CALCULATE_PERFORMANCE } from '../modules/local/calculate_performance' addParams(outdir: "$outdir")


workflow VNTR_CALLER {
workflow VNTR_CALLING {

BUILD_BWA_INDEX ( ref_fasta )

Expand Down

0 comments on commit 0d9516d

Please sign in to comment.