Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix indenting of nextflow.config #50

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 41 additions & 41 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Workflow details
manifest {
author = 'Sydney Informatics Hub, University of Sydney'
author = 'Georgie Samaha, Sydney Informatics Hub, University of Sydney'
name = 'GermlineStructuralV-nf'
description = 'Multi-caller germline structural variant calling pipeline'
homePage = 'https://github.com/Sydney-Informatics-Hub/Germline-StructuralV-nf'
Expand All @@ -11,27 +11,27 @@ nextflowVersion = '!>=20.07.1'

// Set default parameters
params {
version = '1.0'
help = false
input = false
ref = false
intervals = false
outDir = './results'
survivorMaxDist = 1000
survivorConsensus = 1
survivorType = 1
survivorStrand = 1
survivorSize = 40
annotsvDir = false
annotsvMode = 'both'
extraMantaFlags = false
extraSmooveFlags = false
extraTidditCovFlags = false
extraTidditSvFlags= false
extraAnnotsvFlags = false
pbs_account = false
slurm_account = false
whoami = false
version = '1.0'
help = false
input = null
ref = false
intervals = false
outDir = './results'
survivorMaxDist = 1000
survivorConsensus = 1
survivorType = 1
survivorStrand = 1
survivorSize = 40
annotsvDir = false
annotsvMode = 'both'
extraMantaFlags = false
extraSmooveFlags = false
extraTidditCovFlags = false
extraTidditSvFlags = false
extraAnnotsvFlags = false
pbs_account = false
slurm_account = false
whoami = false
}

// Preset use of containers with Singularity
Expand Down Expand Up @@ -114,25 +114,25 @@ withName: 'annotsv' {
def timestamp = new java.util.Date().format('yyyy-MM-dd_HH-mm-ss')

// Produce a workflow diagram
dag {
enabled = true
file = "${params.outDir}/runInfo/GermlineStructuralV_dag_${timestamp}.svg"
}
dag {
enabled = true
file = "${params.outDir}/runInfo/GermlineStructuralV_dag_${timestamp}.svg"
}

report {
enabled = true
file = "${params.outDir}/runInfo/GermlineStructuralV_report_${timestamp}.html"
}
report {
enabled = true
file = "${params.outDir}/runInfo/GermlineStructuralV_report_${timestamp}.html"
}

timeline {
enabled = true
overwrite = true
file = "${params.outDir}/runInfo/GermlineStructuralV_timeline_${timestamp}.html"
}
timeline {
enabled = true
overwrite = true
file = "${params.outDir}/runInfo/GermlineStructuralV_timeline_${timestamp}.html"
}

trace {
enabled = true
overwrite = true
file = "${params.outDir}/runInfo/GermlineStructuralV_trace_${timestamp}.txt"
fields = 'process,name,status,queue,realtime,cpus,%cpu,memory,%mem,rss,env'
}
trace {
enabled = true
overwrite = true
file = "${params.outDir}/runInfo/GermlineStructuralV_trace_${timestamp}.txt"
fields = 'process,name,status,queue,realtime,cpus,%cpu,memory,%mem,rss,env'
}