comparison metaphlan.xml @ 5:61f300dbc6ac draft

Enable fastq input
author Jim Johnson <jj@umn.edu>
date Wed, 10 Oct 2012 12:35:51 -0500
parents 3468e70d3ed0
children a3068eb6b676
comparison
equal deleted inserted replaced
4:3468e70d3ed0 5:61f300dbc6ac
2 <requirements> 2 <requirements>
3 <requirement type="package" version="1.7.0">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 interpreter="python">
8 metaphlan.py 8 \${METAPHLAN_PATH}/metaphlan.py
9 $input 9 $input
10 --bowtie2db \${METAPHLAN_PATH}/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>