Mercurial > repos > iuc > kallisto_quant
annotate kallisto_quant.xml @ 0:59a4c97b85d6 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
author | iuc |
---|---|
date | Sat, 05 Aug 2017 04:02:28 -0400 |
parents | |
children | 7a9158bb6f98 |
rev | line source |
---|---|
0
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
2 <tool id="kallisto_quant" name="Kallisto quant" version="@VERSION@.0"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
3 <description>- quantify abundances of RNA-Seq transcripts</description> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
4 <macros> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
6 </macros> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
7 <expand macro="requirements" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
8 <command detect_errors="exit_code"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
9 <![CDATA[ |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
10 #if $reference_genome.reference_genome_source == "history": |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
11 ln -s '$reference_genome.reference' reference.fa && |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
12 kallisto index reference.fa -i reference.kallisto && |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
13 #set index_path = 'reference.kallisto' |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
14 #else: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
15 #set index_path = $reference_genome.index.fields.path |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
16 #end if |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
17 kallisto quant -i '$index_path' |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
18 $bias --bootstrap-samples $bootstrap_samples --seed $seed $fusion $pseudobam |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
19 #if $pseudobam: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
20 -o . |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
21 #else: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
22 --threads \${GALAXY_SLOTS:-1} |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
23 -o . |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
24 #end if |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
25 #if str($single_paired.single_paired_selector) == 'single': |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
26 --single |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
27 #set $single_reads = "' '".join(str($single_paired.reads).split(',')) |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
28 --fragment-length $single_paired.fragment_length |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
29 --sd $single_paired.sd |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
30 '$single_reads' |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
31 #else: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
32 #if str($single_paired.collection.collection_selector) == 'datasets': |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
33 #set $forward_reads = str($single_paired.collection.forward).split(',') |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
34 #set $reverse_reads = str($single_paired.collection.reverse).split(',') |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
35 #else: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
36 #set $forward_reads = [str($read.forward) for $read in $single_paired.collection.reads] |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
37 #set $reverse_reads = [str($read.reverse) for $read in $single_paired.collection.reads] |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
38 #end if |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
39 #set $tuplexed_reads = zip($forward_reads, $reverse_reads) |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
40 #set $multiplexed_reads = [] |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
41 #for read_pair in $tuplexed_reads: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
42 ${multiplexed_reads.extend([read for read in read_pair])} |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
43 #end for |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
44 #set $reads = "' '".join($multiplexed_reads) |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
45 '$reads' |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
46 #end if |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
47 #if $pseudobam: |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
48 | samtools sort -O bam -@ \${GALAXY_SLOTS:-1} -o '$pseudobam_output' - |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
49 #end if |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
50 && cat run_info.json |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
51 ]]> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
52 </command> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
53 <inputs> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
54 <conditional name="reference_genome"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
55 <param name="reference_genome_source" type="select" label="Reference genome for quantification"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
56 <option value="indexed" selected="true">Use a built-in genome</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
57 <option value="history">Use a genome from history</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
58 </param> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
59 <when value="indexed"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
60 <param name="index" type="select" label="Select a reference genome" help="If your genome of interest is not listed, contact your Galaxy administrator"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
61 <options from_data_table="kallisto_indexes"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
62 <filter type="sort_by" column="2" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
63 <validator type="no_options" message="No genomes are available for the selected input dataset" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
64 </options> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
65 </param> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
66 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
67 <when value="history"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
68 <param name="reference" type="data" format="fasta" label="FASTA reference genome" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
69 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
70 </conditional> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
71 <conditional name="single_paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
72 <param name="single_paired_selector" type="select" label="Single-end or paired reads"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
73 <option value="single" selected="true">Single-end</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
74 <option value="paired">Paired</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
75 </param> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
76 <when value="single"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
77 <param name="reads" type="data" format="fastq" multiple="True" label="Reads in FASTQ format" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
78 <param name="fragment_length" argument="--fragment-length" type="integer" value="200" label="Average fragment length" help="Illumina typically produces reads of 180-200bp" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
79 <param argument="--sd" type="integer" value="20" label="Estimated standard deviation of fragment length" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
80 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
81 <when value="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
82 <conditional name="collection"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
83 <param name="collection_selector" type="select" label="Collection or individual datasets"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
84 <option value="datasets" selected="true">Individual files</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
85 <option value="collection">Pair or list of pairs</option> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
86 </param> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
87 <when value="datasets"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
88 <param name="forward" type="data" format="fastq" multiple="True" label="Forward reads" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
89 <param name="reverse" type="data" format="fastq" multiple="True" label="Reverse reads" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
90 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
91 <when value="collection"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
92 <param name="reads" type="data_collection" format="fastq" collection_type="list:paired" label="Collection of reads" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
93 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
94 </conditional> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
95 </when> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
96 </conditional> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
97 <param argument="--bias" type="boolean" truevalue="--bias" falsevalue="" label="Perform sequence based bias correction" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
98 <param name="bootstrap_samples" argument="--bootstrap-samples" type="integer" value="0" label="Number of bootstrap samples" help="default: 0" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
99 <param argument="--seed" type="integer" value="42" label="Seed for the bootstrap sampling" help="default: 42" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
100 <param argument="--fusion" type="boolean" truevalue="--fusion" falsevalue="" label="Search for fusions" help="for Pizzly" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
101 <param argument="--pseudobam" type="boolean" truevalue="--pseudobam" falsevalue="" label="Output pseudoalignments in BAM format" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
102 </inputs> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
103 <outputs> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
104 <data format="h5" name="abundance_h5" from_work_dir="abundance.h5" label="${tool.name} on ${on_string}: Abundances (HDF5)" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
105 <data format="tabular" name="abundance_tab" from_work_dir="abundance.tsv" label="${tool.name} on ${on_string}: Abundances (tabular)" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
106 <data format="bam" name="pseudobam_output" label="${tool.name} on ${on_string}: Pseudoalignments"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
107 <filter>pseudobam</filter> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
108 </data> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
109 </outputs> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
110 <tests> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
111 <test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
112 <param name="reference_genome_source" value="history" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
113 <param name="reference" ftype="fasta" value="mm10_chrM.fa" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
114 <param name="single_paired_selector" value="paired" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
115 <param name="collection_selector" value="datasets" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
116 <param name="forward" ftype="fastq" value="mm10_chrM-1.f.fq,mm10_chrM-2.f.fq,mm10_chrM-3.f.fq,mm10_chrM-4.f.fq,mm10_chrM-5.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
117 <param name="reverse" ftype="fastq" value="mm10_chrM-1.r.fq,mm10_chrM-2.r.fq,mm10_chrM-3.r.fq,mm10_chrM-4.r.fq,mm10_chrM-5.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
118 <output name="abundance_tab" file="kallisto_quant_out1.tab" ftype="tabular" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
119 </test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
120 <test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
121 <param name="reference_genome_source" value="history" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
122 <param name="reference" ftype="fasta" value="mm10_chrM.fa" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
123 <param name="single_paired_selector" value="paired" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
124 <param name="collection_selector" value="collection" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
125 <param name="reads"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
126 <collection type="list:paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
127 <element name="p1"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
128 <collection type="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
129 <element name="forward" value="mm10_chrM-1.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
130 <element name="reverse" value="mm10_chrM-1.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
131 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
132 </element> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
133 <element name="p2"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
134 <collection type="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
135 <element name="forward" value="mm10_chrM-2.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
136 <element name="reverse" value="mm10_chrM-2.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
137 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
138 </element> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
139 <element name="p3"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
140 <collection type="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
141 <element name="forward" value="mm10_chrM-3.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
142 <element name="reverse" value="mm10_chrM-3.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
143 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
144 </element> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
145 <element name="p4"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
146 <collection type="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
147 <element name="forward" value="mm10_chrM-4.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
148 <element name="reverse" value="mm10_chrM-4.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
149 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
150 </element> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
151 <element name="p5"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
152 <collection type="paired"> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
153 <element name="forward" value="mm10_chrM-5.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
154 <element name="reverse" value="mm10_chrM-5.r.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
155 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
156 </element> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
157 </collection> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
158 </param> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
159 <output name="abundance_tab" file="kallisto_quant_out2.tab" ftype="tabular" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
160 </test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
161 <test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
162 <param name="reference_genome_source" value="history" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
163 <param name="reference" ftype="fasta" value="mm10_chrM.fa" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
164 <param name="single_paired_selector" value="single" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
165 <param name="collection_selector" value="collection" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
166 <param name="reads" ftype="fastq" value="mm10_chrM-1.f.fq,mm10_chrM-2.f.fq,mm10_chrM-3.f.fq,mm10_chrM-4.f.fq,mm10_chrM-5.f.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
167 <output name="abundance_tab" file="kallisto_quant_out3.tab" ftype="tabular" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
168 </test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
169 <test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
170 <param name="reference_genome_source" value="history" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
171 <param name="reference" ftype="fasta" value="felCat8_chrM.fa" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
172 <param name="single_paired_selector" value="paired" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
173 <param name="collection_selector" value="datasets" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
174 <param name="pseudobam" value="true" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
175 <param name="forward" ftype="fastq" value="felCat8_chrM_F.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
176 <param name="reverse" ftype="fastq" value="felCat8_chrM_R.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
177 <output name="abundance_tab" file="kallisto_quant_out4.tab" ftype="tabular" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
178 <output name="pseudobam_output" file="kallisto_quant_out4.bam" ftype="bam" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
179 </test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
180 <test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
181 <param name="reference_genome_source" value="cached" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
182 <param name="single_paired_selector" value="paired" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
183 <param name="collection_selector" value="datasets" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
184 <param name="pseudobam" value="true" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
185 <param name="forward" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_F.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
186 <param name="reverse" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_R.fq" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
187 <output name="abundance_tab" file="kallisto_quant_out5.tab" ftype="tabular" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
188 <output name="pseudobam_output" file="kallisto_quant_out5.bam" ftype="bam" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
189 </test> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
190 </tests> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
191 <help> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
192 <![CDATA[ |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
193 kallisto is a program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. On benchmarks with standard RNA-Seq data, kallisto can quantify 30 million human reads in less than 3 minutes on a Mac desktop computer using only the read sequences and a transcriptome index that itself takes less than 10 minutes to build. Pseudoalignment of reads preserves the key information needed for quantification, and kallisto is therefore not only fast, but also as accurate as existing quantification tools. In fact, because the pseudoalignment procedure is robust to errors in the reads, in many benchmarks kallisto significantly outperforms existing tools. |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
194 ]]> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
195 </help> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
196 <expand macro="citations" /> |
59a4c97b85d6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff
changeset
|
197 </tool> |