awslabs / amazon-omics-tools

Apache License 2.0
21 stars 6 forks source link

Write-config should include process #74

Open KevinSayers opened 1 month ago

KevinSayers commented 1 month ago

The --write-config should include the process block for a Nextflow config.

Current output:

withName: test {
        cpus = 2
}

Should be:

process {
    withName: test {
        cpus = 2
    }
}