comparison metaphlan.xml @ 4:80b22b31633f

Updated for MetaPhlAn v1.7 and tool_dependencies added for auto install
author Jim Johnson <jj@umn.edu>
date Thu, 11 Oct 2012 12:01:20 -0500
parents e88fa24fa837
children 73f082e9fa2d
comparison
equal deleted inserted replaced
3:e88fa24fa837 4:80b22b31633f
1 <tool id="metaphlan" name="MetaPhlAn" version="1.6.0"> 1 <tool id="metaphlan" name="MetaPhlAn" version="1.7.0">
2 <requirements> 2 <requirements>
3 <requirement type="package">metaphlan</requirement> 3 <requirement type="package" version="1.7.0">metaphlan</requirement>
4 <requirement type="package">bowtie2</requirement> 4 <requirement type="package">bowtie2</requirement>
5 </requirements> 5 </requirements>
6 <description>Metagenomic Phylogenetic Analysis</description> 6 <description>Metagenomic Phylogenetic Analysis</description>
7 <command> 7 <command>
8 metaphlan.py 8 python \${METAPHLAN_PATH}/metaphlan.py
9 $input 9 $input
10 --bowtie2db ${GALAXY_DATA_INDEX_DIR}/shared/metaphlan/bowtie2db/mpa 10 --bowtie2db \${METAPHLAN_PATH}/bowtie2db/mpa
11 --no_map 11 --no_map
12 -o $output 12 -o $output
13 --bt2_ps $PresetsForBowtie2 13 --bt2_ps $PresetsForBowtie2
14 </command> 14 </command>
15 15
16 <inputs> 16 <inputs>
17 <param format="fasta" name="input" type="data" label="Input metagenome (multi-fasta of metagenomic reads, loaded with the Get Data module, see below for an example)"></param> 17 <param format="fasta,fastq" name="input" type="data" label="Input metagenome (multi-fasta of metagenomic reads, loaded with the Get Data module, see below for an example)"></param>
18 <param name="PresetsForBowtie2" type="select" format="text"> 18 <param name="PresetsForBowtie2" type="select" format="text">
19 <label>Sensitivity options for read-marker similarity (as described by BowTie2)</label> 19 <label>Sensitivity options for read-marker similarity (as described by BowTie2)</label>
20 <help>sensitive-local is recommended for avoiding overly-sensitive hits when using non-preprocessed fastq files</help>
20 <option value="very-sensitive-local">Very Sensitive Local</option> 21 <option value="very-sensitive-local">Very Sensitive Local</option>
21 <option value="sensitive-local">Sensitive Local</option> 22 <option value="sensitive-local">Sensitive Local</option>
22 <option value="very-sensitive">Very Sensitive</option> 23 <option value="very-sensitive">Very Sensitive</option>
23 <option value="sensitive">Sensitive</option> 24 <option value="sensitive">Sensitive</option>
24 </param> 25 </param>
25 </inputs> 26 </inputs>
27 <stdio>
28 <exit_code range="1:" level="fatal" description="MetaPhlAn error" />
29 </stdio>
26 <outputs> 30 <outputs>
27 <data format="tabular" name="output" /> 31 <data format="tabular" name="output" />
28 </outputs> 32 </outputs>
29 33
30 <tests> 34 <tests>