annotate tatajuba.xml @ 1:95c839d9120f draft default tip

planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit 6639e2954efcd909b3edcc139f8c9a48035bec0d-dirty
author thanhlv
date Wed, 15 Jun 2022 09:23:50 +0000
parents 7731b86ad022
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
1 <tool id="tatajuba" name="tatajuba" version="@VERSION@">
1
95c839d9120f planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit 6639e2954efcd909b3edcc139f8c9a48035bec0d-dirty
thanhlv
parents: 0
diff changeset
2 <description> Finding distribution of homopolymeric tracts</description>
0
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
3 <macros>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
4 <token name="@VERSION@">1.0.4</token>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
5 </macros>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
6 <requirements>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
7 <requirement type="package" version="@VERSION@">tatajuba</requirement>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
8 </requirements>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
9 <version_command>tatajuba --version</version_command>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
11 #if $reads.sr_type == "paired"
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
12 ln -s '$reads.R1' read1.fastq.gz &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
13 ln -s '$reads.R2' read2.fastq.gz &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
14 #end if
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
15 #if $reads.sr_type == "collection"
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
16 ln -s '$reads.input1.forward' read1.fastq.gz &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
17 ln -s '$reads.input1.reverse' read2.fastq.gz &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
18 #end if
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
19 ln -s '$gff' 'ref.gff' &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
20 ln -s '$fasta' 'ref.fasta' &&
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
21 tatajuba
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
22 $keep_bias
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
23 $vcf
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
24 --kmer=$kmer
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
25 --minsize=$minsize
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
26 --minreads=$minreads
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
27 --maxdist=$maxdist
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
28 #if $leven > 0
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
29 --level $leven
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
30 #end if
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
31 --nthreads=\${GALAXY_SLOTS:-4}
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
32 --gff=ref.gff
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
33 --fasta=ref.fasta
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
34 *.fastq.gz
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
35 --outdir=output
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
36 ]]> </command>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
37
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
38 <inputs>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
39 <conditional name="reads">
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
40 <param name="sr_type" type="select" label="Input reads type or collection" help="Select 'paired end' for a single library or 'collection' for a paired end collection">
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
41 <option value="paired" selected="true">Paired End</option>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
42 <option value="collection">Paired Collection</option>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
43 </param>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
44 <when value="paired">
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
45 <param name="R1" type="data" format="fastqsanger,fastqsanger.gz,fastqsanger.bz2" label="Forward reads (R1)" help="The file of forward reads in FASTQ format"/>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
46 <param name="R2" type="data" format="fastqsanger,fastqsanger.gz,fastqsanger.bz2" label="Reverse reads (R2)" help="The file of reverse reads in FASTQ format"/>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
47 </when>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
48 <when value="collection">
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
49 <param name="input1" format="fastqsanger,fastqsanger.gz,fastqsanger.bz2" type="data_collection" collection_type="paired" label="Paired collection" help="See help section for an explanation of dataset collections"/>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
50 </when>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
51 </conditional>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
52 <param name="gff" type="data" format="gff" label="Reference in GFF format"/>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
53 <param name="fasta" type="data" format="fasta,fasta.gz" label="Reference in fasta format"/>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
54 <param argument="kmer" type="integer" value="25" min="2" max="32" label="Kmer size flanking each side of homopolymer" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
55 <param argument="minsize" type="integer" value="4" min="1" max="32" label="Fraction value of the read depth to be considered invalid" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
56 <param argument="minreads" type="integer" value="5" min="1" label="Minimum number of reads for tract+context to be considered" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
57 <param argument="maxdist" type="integer" value="1" min="1" label="Maximum distance between kmers of a flanking region to merge them into one context" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
58 <param argument="leven" type="integer" value="0" min="0" label="Levenshtein distance between flanking regions to merge them into one context" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
59 <param argument="vcf" type="boolean" truevalue="--vcf" falsevalue="" checked="false" label="generate VCF files for each sample, around the HT regions" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
60 <param argument="keep_bias" type="boolean" truevalue="--keep_bias" falsevalue="" checked="false" label="Keep biased tracts" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
61 </inputs>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
62 <outputs>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
63 <data name="variable_tracts" format="tabular" from_work_dir="output/variable_tracts.bed" label="${tool.name} on ${on_string} BED file with tract locations" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
64 <data name="tract_list" format="tabular" from_work_dir="output/tract_list.tsv" label="${tool.name} on ${on_string} list of all HTs found" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
65 <data name="selected_tracts_unknown" format="tabular" from_work_dir="output/selected_tracts_unknown.tsv" label="${tool.name} on ${on_string} debug file with difference stats per tract for tracts outside annotated regions" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
66 <data name="selected_tracts_annotated" format="tabular" from_work_dir="output/selected_tracts_annotated.tsv" label="${tool.name} on ${on_string} debug file with difference stats per tract for tracts in annotated regions" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
67 <data name="per_sample_proportional_coverage" format="tabular" from_work_dir="output/per_sample_proportional_coverage.tsv" label="${tool.name} on ${on_string} feature matrix of proportional coverage depth of HT" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
68 <data name="per_sample_proportional_coverage" format="tabular" from_work_dir="output/per_sample_modal_frequency.tsv" label="${tool.name} on ${on_string} feature matrix with histogram bar length of modal tract length" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
69 <data name="per_sample_average_length" format="tabular" from_work_dir="output/per_sample_average_length.tsv" label="${tool.name} on ${on_string} feature matrix with average HT length" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
70 <data name="vcf1" format="vcf" from_work_dir="output/1.vcf.gz" label="${tool.name} on ${on_string} VCF-1" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
71 <data name="vcf2" format="vcf" from_work_dir="output/2.vcf.gz" label="${tool.name} on ${on_string} VCF-2" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
72 </outputs>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
73 <tests>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
74 <test name="test-paired-end">
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
75 <param name="sr_type" value="paired" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
76 <param name="R1" value="r1.fastq.gz" ftype="fastqsanger.gz" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
77 <param name="R2" value="r2.fastq.gz" ftype="fastqsanger.gz" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
78 <param name="gff" value="GCF_000009085.1_ASM908v1_genomic.gff" ftype="gff" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
79 <param name="fasta" value="GCF_000009085.1_ASM908v1_genomic.fna" ftype="fasta" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
80 <output name="per_sample_average_length" file="output/per_sample_average_length.tsv" ftype="tabular" compare="contains" />
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
81 </test>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
82 </tests>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
83 <help><![CDATA[
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
84 ]]> </help>
7731b86ad022 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/tatajuba commit b29e7d4570d9c52001a3d7cc965843b120b8553c-dirty
thanhlv
parents:
diff changeset
85 </tool>