mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-03 04:52:09 -05:00
6927f1d086
* new gubbins module * new gubbins module * new gubbins module * Update software/gubbins/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/gubbins/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/gubbins/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/gubbins/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * new gubbins module * new gubbins module * new gubbins module * new gubbins module * new gubbins module * new gubbins module * new gubbins module * Update tests/config/test_data.config Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/gubbins/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * new gubbins module * new gubbins module * new snpsites module * new snpsites module * new snpsites module * new snpsites module * adding fasttree module * correct trailing whitespace * using sarscov2 as a test dir * use sars-cov-2 alignment * remove old test alignment * new snpsites module * new snpsites module * new snpsites module * updated test file names * new snpsites module * revert to gubbins test on upstream * add new lines * renove whitespace * Apply suggestions from code review Co-authored-by: avantonder <avt@sanger.ac.uk> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: avantonder <ajv37@cam.ac.uk>
39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process SNPSITES {
|
|
label 'process_medium'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
|
|
|
|
conda (params.enable_conda ? "bioconda::snp-sites=2.5.1" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/snp-sites:2.5.1--hed695b0_0"
|
|
} else {
|
|
container "quay.io/biocontainers/snp-sites:2.5.1--hed695b0_0"
|
|
}
|
|
|
|
input:
|
|
path alignment
|
|
|
|
output:
|
|
path "*.fas" , emit: fasta
|
|
path "*.sites.txt" , emit: constant_sites
|
|
path "*.version.txt", emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
"""
|
|
snp-sites -c \\
|
|
$alignment \\
|
|
> filtered_alignment.fas
|
|
|
|
echo \$(snp-sites -C $alignment) > constant.sites.txt
|
|
|
|
echo \$(snp-sites -V 2>&1) | sed 's/snp-sites //' > ${software}.version.txt
|
|
"""
|
|
}
|