annotate kallisto_quant.xml @ 10:8bb5d2582782 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
author iuc
date Wed, 31 May 2023 20:08:38 +0000
parents da0cbd9e1643
children 81c9f0ba13d2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
1 <tool id="kallisto_quant" name="Kallisto quant" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.05">
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
2 <description>quantify abundances of RNA-Seq transcripts</description>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
3 <macros>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
4 <import>macros.xml</import>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
5 </macros>
9
da0cbd9e1643 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
6 <xrefs>
da0cbd9e1643 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
7 <xref type="bio.tools">kallisto</xref>
da0cbd9e1643 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
8 </xrefs>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
9 <expand macro="requirements" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
10 <command detect_errors="exit_code">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
11 <![CDATA[
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
12 #if $reference_transcriptome.reference_transcriptome_source == "history":
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
13 ln -s '$reference_transcriptome.reference' reference.fa &&
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
14 kallisto index reference.fa -i reference.kallisto &&
16c923816e87 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.kallisto'
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
16 #else:
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
17 #set index_path = $reference_transcriptome.index.fields.path
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
18 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
19 kallisto quant -i '$index_path'
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
20 $bias --bootstrap-samples $bootstrap_samples --seed $seed $fusion $pseudobam
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
21 #if $pseudobam:
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
22 -o .
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
23 #else:
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
24 --threads \${GALAXY_SLOTS:-1}
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
25 -o .
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
26 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
27 #if str($single_paired.single_paired_selector) == 'single':
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
28 --single
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
29 #set $single_reads = $single_paired.reads
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
30 --fragment-length $single_paired.fragment_length
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
31 --sd $single_paired.sd
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
32 '$single_reads'
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
33 #else:
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
34 $single_paired.lib_type
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
35 #if str($single_paired.collection.collection_selector) == 'datasets':
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
36 #set $forward_reads = $single_paired.collection.forward
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
37 #set $reverse_reads = $single_paired.collection.reverse
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
38 #else:
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
39 #set $forward_reads = $single_paired.collection.reads.forward
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
40 #set $reverse_reads = $single_paired.collection.reads.reverse
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
41 #end if
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
42 #set $reads = "'%s' '%s'" % ($forward_reads, $reverse_reads)
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
43 $reads
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
44 #end if
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
45 $single_overhang
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
46 #if $genomebam_option.selector
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
47 $genomebam_option.selector
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
48 --gtf $genomebam_option.gtf
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
49 --chromosomes $genomebam_option.chromosomes
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
50 #end if
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
51 #if $pseudobam:
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
52 && samtools sort --no-PG -O bam -@ \${GALAXY_SLOTS:-1} -T "\${TMPDIR:-.}" -o '$pseudobam_output' pseudoalignments.bam
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
53 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
54 && cat run_info.json
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
55 ]]>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
56 </command>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
57 <inputs>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
58 <expand macro="reference_input" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
59 <conditional name="single_paired">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
60 <param name="single_paired_selector" type="select" label="Single-end or paired reads">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
61 <option value="single" selected="true">Single-end</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
62 <option value="paired">Paired</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
63 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
64 <when value="single">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
65 <param name="reads" type="data" format="fastq,fastq.gz" label="Reads in FASTQ format" />
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
66 <param argument="--fragment-length" type="integer" value="200" label="Average fragment length" help="Illumina typically produces reads of 180-200bp" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
67 <param argument="--sd" type="integer" value="20" label="Estimated standard deviation of fragment length" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
68 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
69 <when value="paired">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
70 <conditional name="collection">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
71 <param name="collection_selector" type="select" label="Collection or individual datasets">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
72 <option value="datasets" selected="true">Individual files</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
73 <option value="collection">Pair or list of pairs</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
74 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
75 <when value="datasets">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
76 <param name="forward" type="data" format="fastq,fastq.gz" label="Forward reads" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
77 <param name="reverse" type="data" format="fastq,fastq.gz" label="Reverse reads" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
78 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
79 <when value="collection">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
80 <param name="reads" type="data_collection" format="fastq,fastq.gz" collection_type="paired" label="Collection of reads" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
81 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
82 </conditional>
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
83 <param name="lib_type" type="select" label="Library strandness information">
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
84 <option value="">Unstranded</option>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
85 <option value="--fr-stranded">Strand specific reads, first read forward</option>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
86 <option value="--rf-stranded">Strand specific reads, first read reverse</option>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
87 </param>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
88 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
89 </conditional>
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
90 <param argument="--bias" type="boolean" truevalue="--bias" falsevalue="" label="Perform sequence based bias correction" help="It allows to learn
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
91 parameters for a model of sequences specific bias and corrects the abundances accordlingly"/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
92 <param argument="--bootstrap-samples" type="integer" value="0" label="Number of bootstrap samples" help="Running with bootstraps
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
93 is mandatory if you want to perform differential expression analysis of isoforms with Sleuth.Default: 0" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
94 <param argument="--fusion" type="boolean" truevalue="--fusion" falsevalue="" label="Search for fusions" help="It generates the required files for Pizzly. This option does normal quantification, but
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
95 additionally looks for reads that do not pseudoalign because they are potentially from fusion genes." />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
96 <param argument="--single-overhang" type="boolean" truevalue="--single-overhang" falsevalue="" checked="false" label="Single overhang" help="Include reads where
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
97 unobserved rest of fragment is predicted to lie outside a transcript" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
98 <param argument="--pseudobam" type="boolean" truevalue="--pseudobam" falsevalue="" label="Output pseudoalignments in BAM format" />
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
99 <conditional name="genomebam_option">
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
100 <param name="selector" type="select" label="Project pseudoalignments to genome">
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
101 <option value="--genomebam">Enabled</option>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
102 <option value="" selected="true">Disabled</option>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
103 </param>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
104 <when value="--genomebam">
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
105 <param argument="--gtf" type="data" format="gtf" label="GTF file" help="GTF file for transcriptome information" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
106 <param argument="--chromosomes" type="data" format="tabular" label="Chromosome names and lengths"/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
107 </when>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
108 <when value=""/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
109 </conditional>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
110 <param argument="--seed" type="integer" value="42" label="Seed for the bootstrap sampling" help="Default: 42" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
111 </inputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
112 <outputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
113 <data format="h5" name="abundance_h5" from_work_dir="abundance.h5" label="${tool.name} on ${on_string}: Abundances (HDF5)" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
114 <data format="tabular" name="abundance_tab" from_work_dir="abundance.tsv" label="${tool.name} on ${on_string}: Abundances (tabular)" />
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
115 <data format="bam" name="pseudobam_output" from_work_dir="abundance.txt" label="${tool.name} on ${on_string}: Pseudoalignments">
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
116 <filter>pseudobam</filter>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
117 </data>
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
118 <data format="tabular" name="fusion_output" from_work_dir="fusion.txt" label="${tool.name} on ${on_string}: Pizzly input (tabular)">
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
119 <filter>fusion</filter>
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
120 </data>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
121 </outputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
122 <tests>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
123 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
124 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
125 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
126 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
127 <param name="collection_selector" value="datasets" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
128 <param name="forward" ftype="fastq" value="mm10_chrM-1.f.fq" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
129 <param name="reverse" ftype="fastq" value="mm10_chrM-1.r.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
130 <output name="abundance_tab" file="kallisto_quant_out1.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
131 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
132 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
133 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
134 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
135 <param name="single_paired_selector" value="paired" />
5
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
136 <param name="collection_selector" value="datasets" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
137 <param name="forward" ftype="fastq" value="mm10_chrM-1.f.fq" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
138 <param name="reverse" ftype="fastq" value="mm10_chrM-1.r.fq" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
139 <param name="lib_type" value="--fr-stranded"/>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
140 <output name="abundance_tab" >
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
141 <assert_contents>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
142 <has_text_matching expression="chrM\t16299\t15804.2\t37\t1e\+06" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
143 </assert_contents>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
144 </output>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
145 </test>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
146 <test>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
147 <param name="reference_transcriptome_source" value="history" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
148 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
149 <param name="single_paired_selector" value="paired" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
150 <param name="collection_selector" value="collection" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
151 <param name="reads">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
152 <collection type="paired">
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
153 <element name="forward" value="mm10_chrM-1.f.fq" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
154 <element name="reverse" value="mm10_chrM-1.r.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
155 </collection>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
156 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
157 <output name="abundance_tab" file="kallisto_quant_out2.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
158 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
159 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
160 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
161 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
162 <param name="single_paired_selector" value="single" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
163 <param name="collection_selector" value="collection" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
164 <param name="reads" ftype="fastq" value="mm10_chrM-1.f.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
165 <output name="abundance_tab" file="kallisto_quant_out3.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
166 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
167 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
168 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
169 <param name="reference" ftype="fasta" value="felCat8_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
170 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
171 <param name="collection_selector" value="datasets" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
172 <param name="pseudobam" value="true" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
173 <param name="forward" ftype="fastq" value="felCat8_chrM_F.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
174 <param name="reverse" ftype="fastq" value="felCat8_chrM_R.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
175 <output name="abundance_tab" file="kallisto_quant_out4.tab" ftype="tabular" />
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
176 <output name="pseudobam_output" file="kallisto_quant_out4.bam" ftype="bam" lines_diff="2"/>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
177 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
178 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
179 <param name="reference_transcriptome_source" value="cached" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
180 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
181 <param name="collection_selector" value="datasets" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
182 <param name="pseudobam" value="true" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
183 <param name="forward" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_F.fq.gz" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
184 <param name="reverse" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_R.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
185 <output name="abundance_tab" file="kallisto_quant_out5.tab" ftype="tabular" />
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
186 <output name="pseudobam_output" file="kallisto_quant_out5.bam" ftype="bam" lines_diff="2"/>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
187 </test>
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
188 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
189 <param name="reference_transcriptome_source" value="history" />
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
190 <param name="reference" ftype="fasta" value="hg38_transcripts.fa" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
191 <param name="single_paired_selector" value="paired" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
192 <param name="collection_selector" value="datasets" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
193 <param name="fusion" value="true" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
194 <param name="forward" ftype="fastq" dbkey="hg38" value="hg38_F.fq.gz" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
195 <param name="reverse" ftype="fastq" dbkey="hg38" value="hg38_R.fq.gz" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
196 <output name="fusion_output" file="fusion.txt" ftype="tabular" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
197 </test>
10
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
198 <test>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
199 <param name="reference_transcriptome_source" value="history" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
200 <param name="reference" ftype="fasta" value="transcripts.fasta" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
201 <param name="single_paired_selector" value="paired" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
202 <param name="collection_selector" value="datasets" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
203 <param name="forward" ftype="fastq" value="reads_forward.fastq.gz" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
204 <param name="reverse" ftype="fastq" value="reads_reverse.fastq.gz" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
205 <conditional name="genomebam_option">
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
206 <param name="selector" value="--genomebam"/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
207 <param name="gtf" value="annotation.gtf.gz"/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
208 <param name="chromosomes" value="chromosome_size.tabular"/>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
209 </conditional>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
210 <output name="abundance_tab" file="kallisto_quant_out7.tab" ftype="tabular" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
211 <assert_command>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
212 <has_text text="--genomebam" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
213 <has_text text="--chromosomes" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
214 <has_text text="--gtf" />
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
215 </assert_command>
8bb5d2582782 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 168993a4e148506b1d3998c536caa2e501c36ccf
iuc
parents: 9
diff changeset
216 </test>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
217 </tests>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
218 <help>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
219 <![CDATA[
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
220 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.
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
221 ]]>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
222 </help>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
223 <expand macro="citations" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
224 </tool>