forked from nf-core/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add module famsa_align (nf-core#3697)
* Add module famsa_align * remove trailing white space
- Loading branch information
Showing
6 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
|
||
process FAMSA_ALIGN { | ||
tag "$meta.id" | ||
label 'process_medium' | ||
|
||
conda "bioconda::famsa=2.2.2" | ||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/famsa:2.2.2--h9f5acd7_0': | ||
'biocontainers/famsa:2.2.2--h9f5acd7_0' }" | ||
|
||
input: | ||
tuple val(meta), path(fasta) | ||
tuple val(meta2), path(tree) | ||
|
||
output: | ||
tuple val(meta), path("*.aln"), emit: alignment | ||
path "versions.yml" , emit: versions | ||
|
||
when: | ||
task.ext.when == null || task.ext.when | ||
|
||
script: | ||
def args = task.ext.args ?: '' | ||
def prefix = task.ext.prefix ?: "${meta.id}" | ||
def options_tree = tree ? "-gt import $tree" : "" | ||
""" | ||
famsa $options_tree \\ | ||
$args \\ | ||
-t ${task.cpus} \\ | ||
${fasta} \\ | ||
${prefix}.aln | ||
cat <<-END_VERSIONS > versions.yml | ||
"${task.process}": | ||
famsa: \$( famsa -help 2>&1 | head -n 2 | tail -n 1 | sed 's/ version //g' ) | ||
END_VERSIONS | ||
""" | ||
|
||
stub: | ||
def prefix = task.ext.prefix ?: "${meta.id}" | ||
""" | ||
touch ${prefix}.aln | ||
cat <<-END_VERSIONS > versions.yml | ||
"${task.process}": | ||
famsa: \$( famsa -help 2>&1 | head -n 2 | tail -n 1 | sed 's/ version //g' ) | ||
END_VERSIONS | ||
""" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/yaml-schema.json | ||
name: "famsa_align" | ||
description: Aligns sequences using FAMSA | ||
keywords: | ||
- alignment | ||
- MSA | ||
- genomics | ||
tools: | ||
- "famsa": | ||
description: "Algorithm for large-scale multiple sequence alignments" | ||
homepage: "https://github.com/refresh-bio/FAMSA" | ||
documentation: "https://github.com/refresh-bio/FAMSA" | ||
tool_dev_url: "https://github.com/refresh-bio/FAMSA" | ||
doi: "10.1038/srep33964" | ||
licence: "['GPL v3']" | ||
|
||
input: | ||
- meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. `[ id:'test']` | ||
- fasta: | ||
type: file | ||
description: Input sequences in FASTA format | ||
pattern: "*.{fa,fasta}" | ||
|
||
- meta2: | ||
type: map | ||
description: | | ||
Groovy Map containing tree information | ||
e.g. `[ id:'test_tree']` | ||
- tree: | ||
type: file | ||
description: Input guide tree in Newick format | ||
pattern: "*.{dnd}" | ||
|
||
output: | ||
- meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. `[ id:'test']` | ||
- alignment: | ||
type: file | ||
description: Alignment file. | ||
pattern: "*.{aln}" | ||
|
||
- versions: | ||
type: file | ||
description: File containing software versions | ||
pattern: "versions.yml" | ||
|
||
authors: | ||
- "@luisas" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env nextflow | ||
|
||
nextflow.enable.dsl = 2 | ||
|
||
include { FAMSA_GUIDETREE } from '../../../../../modules/nf-core/famsa/guidetree/main.nf' | ||
include { FAMSA_ALIGN } from '../../../../../modules/nf-core/famsa/align/main.nf' | ||
|
||
workflow test_famsa_align { | ||
|
||
input = [ | ||
[ id:'test' ], // meta map | ||
file(params.test_data['sarscov2']['illumina']['contigs_fasta'], checkIfExists: true) | ||
] | ||
|
||
FAMSA_ALIGN ( input , [[:],[]] ) | ||
|
||
} | ||
|
||
|
||
workflow test_famsa_align_with_tree { | ||
|
||
input = [ | ||
[ id:'test' ], // meta map | ||
file(params.test_data['sarscov2']['illumina']['contigs_fasta'], checkIfExists: true) | ||
] | ||
|
||
|
||
ch_tree = FAMSA_GUIDETREE ( input ).tree | ||
|
||
FAMSA_ALIGN ( input , ch_tree ) | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
process { | ||
|
||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" } | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
- name: famsa align test_famsa_align | ||
command: nextflow run ./tests/modules/nf-core/famsa/align -entry test_famsa_align -c ./tests/config/nextflow.config -c ./tests/modules/nf-core/famsa/align/nextflow.config | ||
tags: | ||
- famsa/align | ||
- famsa | ||
files: | ||
- path: output/famsa/test.aln | ||
md5sum: 7cf7375f2ba360814ea978731838b972 | ||
- path: output/famsa/versions.yml | ||
|
||
- name: famsa align test_famsa_align_with_tree | ||
command: nextflow run ./tests/modules/nf-core/famsa/align -entry test_famsa_align_with_tree -c ./tests/config/nextflow.config -c ./tests/modules/nf-core/famsa/align/nextflow.config | ||
tags: | ||
- famsa/align | ||
- famsa | ||
files: | ||
- path: output/famsa/test.aln | ||
md5sum: 7cf7375f2ba360814ea978731838b972 | ||
- path: output/famsa/test.dnd | ||
md5sum: f3ef8b16a7a16cb4548942ebf2e7bad6 | ||
- path: output/famsa/versions.yml |