annotate fairy_sketch.xml @ 0:666cf1a9572c draft default tip

planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
author iuc
date Sun, 12 Jan 2025 19:00:01 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
1 <tool id="fairy_sketch" name="Fairy sketch" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
2 <description>sketching of k-mers for coverage into a hashtable</description>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
3 <macros>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
4 <import>macros.xml</import>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
5 </macros>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
7 <command detect_errors="exit_code">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
8 <![CDATA[
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
9
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
10 #import re
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
11
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
12 mkdir -p res &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
13
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
14 #if $input.is_select == "single":
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
15 #set $file = re.sub('[^\s\w\-\\.]', '_', str($reads.element_identifier))
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
16 #set $filename = $file + '.bcsp'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
17 ln -s '$reads' '$file' &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
18 #else if $input.is_select == 'pair':
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
19 #set $file_1 = re.sub('[^\s\w\-\\.]', '_', str($first_pairs.element_identifier))
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
20 #set $file_2 = re.sub('[^\s\w\-\\.]', '_', str($second_pairs.element_identifier))
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
21 ## Since the tool used the first inputed file to name the output file this has to be used there to cp the right file
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
22 #set $filename = $file_1 + '.paired.bcsp'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
23 ln -s '$first_pairs' '$file_1' &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
24 ln -s '$second_pairs' '$file_2' &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
25 #else
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
26 #set $file_1 = re.sub('[^\s\w\-\\.]', '_', str($paired_collection.forward.element_identifier))
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
27 #set $file_2 = re.sub('[^\s\w\-\\.]', '_', str($paired_collection.reverse.element_identifier))
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
28 ## Since the tool used the first inputed file to name the output file this has to be used there to cp the right file
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
29 #set $filename = $file_1 + '.paired.bcsp'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
30 ln -s '$paired_collection.forward' '$file_1' &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
31 ln -s '$paired_collection.reverse' '$file_2' &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
32 #end if
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
33
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
34 fairy sketch
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
35 -t "\${GALAXY_SLOTS:-3}"
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
36 -c ${c}
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
37 -k ${k}
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
38 -d 'res'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
39 #if $input.is_select == "single":
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
40 -r '$file'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
41 #else
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
42 -1 '$file_1'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
43 -2 '$file_2'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
44 #end if
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
45 &&
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
46
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
47 cp './res/${filename}' '$output'
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
48
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
49 ]]>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
50 </command>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
51 <inputs>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
52 <conditional name="input">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
53 <param name="is_select" type="select" label="Single or paired-end reads">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
54 <option value="single">Single</option>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
55 <option value="pair">Paired</option>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
56 <option value="paired_collection">Paired collection</option>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
57 </param>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
58 <when value="single">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
59 <param argument="--reads" type="data" format="fastqsanger,fasta,fastq,fasta.gz,fastq.gz" label="Input single-end reads"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
60 </when>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
61 <when value="pair">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
62 <param argument="--first_pairs" type="data" format="fastqsanger,fasta,fastq,fasta.gz,fastq.gz" label="Input first paired-end reads"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
63 <param argument="--second_pairs" type="data" format="fastqsanger,fasta,fastq,fasta.gz,fastq.gz" label="Input second paired-end reads"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
64 </when>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
65 <when value="paired_collection">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
66 <param name="paired_collection" format="fastqsanger,fasta,fastq,fasta.gz,fastq.gz" type="data_collection" collection_type="paired" label="Input paired collection reads"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
67 </when>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
68 </conditional>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
69 <param argument="-c" type="integer" value="50" optional="true" label="Set the subsampling rate"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
70 <param argument="-k" type="select" label="Select k-mer size">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
71 <option value="31">31</option>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
72 <option value="21">21</option>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
73 </param>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
74 </inputs>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
75 <outputs>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
76 <data name="output" format="bcsp" label="${tool.name} on ${on_string}"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
77 </outputs>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
78 <tests>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
79 <test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
80 <conditional name="input">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
81 <param name="is_select" value="single"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
82 <param name="reads" value="single_test.fasta.gz" ftype="fasta.gz"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
83 </conditional>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
84 <output name="output" file="single_test.fasta.gz.bcsp"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
85 </test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
86 <test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
87 <conditional name="input">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
88 <param name="is_select" value="pair"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
89 <param name="first_pairs" value="test_paired_1.fq.gz" ftype="fastq.gz"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
90 <param name="second_pairs" value="test_paired_2.fq.gz" ftype="fastq.gz"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
91 </conditional>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
92 <output name="output" file="test_paired_1.fq.gz.paired.bcsp"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
93 </test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
94 <test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
95 <conditional name="input">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
96 <param name="is_select" value="paired_collection"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
97 <param name="paired_collection">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
98 <collection type="paired">
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
99 <element name="forward" value="test_paired_1.fq.gz" ftype="fastq.gz" />
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
100 <element name="reverse" value="test_paired_2.fq.gz" ftype="fastq.gz" />
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
101 </collection>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
102 </param>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
103 </conditional>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
104 <output name="output" file="forward.paired.bcsp"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
105 </test>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
106 </tests>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
107 <help>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
108 <![CDATA[
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
109
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
110 This tool sketch the k-mer into a hashtable which will be needed for the fairy coverage tool to create the coverage file.
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
111
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
112 .. class:: infomark
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
113
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
114 This tool can either use single-end or paired-end reads as input in multiple file formats.
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
115 ]]>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
116 </help>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
117 <expand macro="citations"/>
666cf1a9572c planemo upload for repository https://github.com/bluenote-1577/fairy commit bfba48480e14ad877a96476ef1a9d6973e1129f6
iuc
parents:
diff changeset
118 </tool>