annotate cryptogenotyper.xml @ 0:c64e19bda2a6 draft default tip

planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
author nml
date Fri, 12 Sep 2025 18:50:28 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
1 <tool id="CryptoGenotyper" name = "CryptoGenotyper" version="@VERSION@+galaxy0">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
2 <description>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
3 classifies Cryptosporidium species subtypes based on SSU rRNA and gp60 gene markers from Sanger sequencing data.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
4 </description>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
5 <macros>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
6 <token name="@VERSION@">1.5.0</token>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
7 </macros>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
8 <requirements>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
9 <requirement type="package" version ="@VERSION@">cryptogenotyper</requirement>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
10 </requirements>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
11 <version_command>cryptogenotyper --version</version_command>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
12 <command detect_errors="exit_code">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
13 <![CDATA[
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
14
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
15 #set $ref_file=''
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
16
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
17 #if $db
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
18 ln -sf '${db}' '${db.name}' &&
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
19 #set $ref_file = $db.name
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
20 #end if
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
21
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
22 #if $primers['seqtype'] == 'contig'
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
23 #set $forward_name=$primers.input.forward.name.rsplit('.', 1)[0]
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
24 #set $reverse_name=$primers.input.reverse.name.rsplit('.', 1)[0]
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
25 ln -sf '${$primers.input['forward']}' '${forward_name}_forward.${primers.input.forward.ext}' &&
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
26 ln -sf '${$primers.input['reverse']}' '${reverse_name}_reverse.${primers.input.reverse.ext}' &&
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
27 cryptogenotyper -i '.' -m '$marker' -t '$primers.seqtype' -f 'forward' -r 'reverse'
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
28 #if $db
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
29 --databasefile $ref_file
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
30 #end if
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
31 #else
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
32 #set $filename_no_ext=$primers.input.name.rsplit('.', 1)[0]
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
33 ln -sf '${primers.input}' '${filename_no_ext}.${primers.input.ext}' &&
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
34 cryptogenotyper -i './${primers.input.name}' -m '$marker' -t '$primers.seqtype'
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
35 #if $db
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
36 --databasefile $ref_file
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
37 #end if
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
38 #end if
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
39 $outputheader
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
40 -o 'result'
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
41 ]]>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
42 </command>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
43 <inputs>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
44 <param name="marker" type="select" label="Marker">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
45 <option value="18S">SSU rRNA (18S)</option>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
46 <option value="gp60">gp60</option>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
47 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
48 <param name="db" type="data" optional="true" format="fasta" label="Reference Database File (optional):"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
49 <conditional name="primers">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
50 <param name="seqtype" type="select" label="Type of Sequences">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
51 <option value="forward" selected="true">Forward Only</option>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
52 <option value="reverse">Reverse Only</option>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
53 <option value="contig">Contig</option>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
54 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
55 <when value="contig">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
56 <param name="input" type="data_collection" collection_type="paired" format="ab1,fasta" label="Paired Sequencing File(s)"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
57 </when>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
58 <when value="forward">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
59 <param name="input" type="data" format="ab1,fasta" label="Forward Sequencing File(s)"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
60 </when>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
61 <when value="reverse">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
62 <param name="input" type="data" format="ab1,fasta" label="Reverse Sequencing File(s)"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
63 </when>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
64 </conditional>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
65 <param name="show_log" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Output run log?"></param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
66 <param name="outputheader" type="boolean" truevalue="" falsevalue="--noheaderline" checked="true" label="Output header line in the report?">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
67 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
68
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
69
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
70 </inputs>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
71 <outputs>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
72 <!-- For single files (forward/reverse mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
73 <data name="outfile_single" format="fasta" from_work_dir="result_cryptogenotyper_report.fa"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
74 label="${tool.name} ${marker} extracted fasta from ${primers.input.name.split('.')[0]}">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
75 <filter>primers['seqtype'] != 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
76 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
77 <!-- For collections (contig mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
78 <data name="outfile_collection" format="fasta" from_work_dir="result_cryptogenotyper_report.fa"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
79 label="${tool.name} ${marker} extracted fastas">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
80 <filter>primers['seqtype'] == 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
81 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
82
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
83 <!-- For single files (forward/reverse mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
84 <data name="outfile_report_single" format="tabular" from_work_dir="result_cryptogenotyper_report.txt"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
85 label="${tool.name} ${marker} REPORT on ${primers.input.name.split('.')[0]}">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
86 <filter>primers['seqtype'] != 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
87 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
88 <!-- For collections (contig mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
89 <data name="outfile_report_collection" format="tabular" from_work_dir="result_cryptogenotyper_report.txt"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
90 label="${tool.name} ${marker} REPORTS">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
91 <filter>primers['seqtype'] == 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
92 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
93
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
94 <!-- For single files (forward/reverse mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
95 <data name="outfile_log_single" format="txt" from_work_dir="cryptogenotyper.log"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
96 label="${tool.name} Run ${marker} log on ${primers.input.name.split('.')[0]}">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
97 <filter>show_log and primers['seqtype'] != 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
98 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
99 <!-- For collections (contig mode) -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
100 <data name="outfile_log_collection" format="txt" from_work_dir="cryptogenotyper.log"
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
101 label="${tool.name} ${marker} logs">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
102 <filter>show_log and primers['seqtype'] == 'contig'</filter>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
103 </data>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
104 </outputs>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
105
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
106 <tests>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
107 <!--TEST 1-->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
108 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
109 <param name="marker" value="18S"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
110 <conditional name="primers">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
111 <param name="seqtype" value="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
112 <param name="input" value="P17705_Crypto16-2F-20170927_SSUF_G12_084.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
113 </conditional>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
114 <output name="outfile_report_single" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
115 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
116 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
117 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
118 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
119 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
120 <!--TEST 2 -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
121 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
122 <param name="marker" value="gp60"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
123 <conditional name="primers">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
124 <param name="seqtype" value="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
125 <param name="input" value="P17705_gp60-Crypt14-1F-20170927_gp60F_G07_051.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
126 </conditional>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
127 <output name="outfile_report_single" ftype="tabular" >
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
128 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
129 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
130 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
131 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
132 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
133 <!--TEST 3:Paired gp60 contig test -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
134 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
135 <param name="marker" value="gp60"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
136 <param name="primers|seqtype" value="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
137 <param name="primers|input">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
138 <collection type="paired">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
139 <element name="forward" value="P17705_gp60-Crypt14-1F-20170927_gp60F_G07_051.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
140 <element name="reverse" value="P17705_gp60-Crypt14-1R-20170927_gp60R_H07_049.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
141 </collection>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
142 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
143 <output name="outfile_report_collection" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
144 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
145 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
146 <has_text_matching expression="IIaA15G2R1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
147 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
148 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
149 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
150 <!--TEST 4:Paired 18S contig test -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
151 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
152 <param name="marker" value="18S"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
153 <param name="primers|seqtype" value="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
154 <param name="primers|input">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
155 <collection type="paired">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
156 <element name="forward" value="P17705_Crypto16-2F-20170927_SSUF_G12_084.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
157 <element name="reverse" value="P17705_Crypto16-2R-20170927_SSUR_H12_082.ab1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
158 </collection>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
159 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
160 <output name="outfile_report_collection" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
161 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
162 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
163 <has_text_matching expression="Check for C. parvum TGA paralogs"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
164 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
165 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
166 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
167
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
168
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
169 <!--TEST 5: 18S multi-fasta forward -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
170 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
171 <param name="marker" value="18S"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
172 <param name="primers|seqtype" value="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
173 <param name="primers|input" value="test_illumina_18S_F.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
174 <output name="outfile_report_single" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
175 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
176 <has_n_lines n="5"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
177 <has_text_matching expression="C.hominis"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
178 <has_text_matching expression="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
179 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
180 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
181 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
182
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
183 <!--TEST 6: 18S multi-fasta reverse -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
184 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
185 <param name="marker" value="18S"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
186 <param name="primers|seqtype" value="reverse"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
187 <param name="primers|input" value="test_illumina_18S_R.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
188 <output name="outfile_report_single" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
189 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
190 <has_n_lines n="5"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
191 <has_text_matching expression="C.hominis"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
192 <has_text_matching expression="reverse"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
193 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
194 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
195 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
196
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
197 <!--TEST 7: 18S multi-fasta contig -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
198 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
199 <param name="marker" value="18S"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
200 <param name="primers|seqtype" value="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
201 <param name="primers|input">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
202 <collection type="paired">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
203 <element name="forward" value="test_illumina_18S_F.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
204 <element name="reverse" value="test_illumina_18S_R.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
205 </collection>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
206 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
207 <output name="outfile_report_collection" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
208 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
209 <has_text_matching expression="C.hominis"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
210 <has_text_matching expression="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
211 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
212 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
213 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
214
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
215 <!--TEST 8: gp60 multi-fasta forward -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
216 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
217 <param name="marker" value="gp60"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
218 <param name="primers|seqtype" value="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
219 <param name="primers|input" value="test_illumina_gp60_F1.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
220 <output name="outfile_report_single" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
221 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
222 <has_n_lines n="3"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
223 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
224 <has_text_matching expression="forward"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
225 <has_text_matching expression="IIaA16G3R1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
226 <has_text_matching expression="IIaA15G2R2"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
227
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
228 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
229 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
230 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
231
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
232 <!--TEST 9: gp60 multi-fasta reverse -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
233 <test expect_num_outputs="2">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
234 <param name="marker" value="gp60"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
235 <param name="primers|seqtype" value="reverse"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
236 <param name="primers|input" value="test_illumina_gp60_R1.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
237 <output name="outfile_report_single" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
238 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
239 <has_n_lines n="3"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
240 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
241 <has_text_matching expression="reverse"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
242 <has_text_matching expression="IIaA3R1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
243 <has_text_matching expression="IIaA3R1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
244 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
245 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
246 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
247
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
248
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
249
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
250 <!--TEST 10: gp60 multi-fasta reverse -->
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
251 <test expect_num_outputs="3">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
252 <param name="marker" value="gp60"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
253 <param name="primers|seqtype" value="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
254 <param name="show_log" value="true"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
255 <param name="primers|input">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
256 <collection type="paired">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
257 <element name="forward" value="test_illumina_gp60_F1.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
258 <element name="reverse" value="test_illumina_gp60_R1.fasta"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
259 </collection>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
260 </param>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
261 <output name="outfile_report_collection" ftype="tabular">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
262 <assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
263 <has_text_matching expression="C.parvum"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
264 <has_text_matching expression="contig"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
265 <has_text_matching expression="IIaA16G3R1"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
266 <has_text_matching expression="IIaA15G2R2"/>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
267 </assert_contents>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
268 </output>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
269 </test>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
270
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
271
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
272
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
273
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
274
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
275 </tests>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
276
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
277
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
278 <help>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
279
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
280
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
281 **Syntax**
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
282
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
283 CryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA (18S) and gp60 markers.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
284
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
285 **❗ Important:** To process **multiple input files** and generate **a single** combined report, please import and use the workflows available `here`_.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
286
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
287 .. _here: https://github.com/phac-nml/CryptoGenotyper/tree/main/CryptoGenotyper/GalaxyWorkflows
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
288
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
289
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
290 For a tutorial on how to use CryptoGenotyper, please refer to the `official tutorial`_.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
291
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
292 For more information, please visit https://github.com/phac-nml/CryptoGenotyper.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
293
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
294 .. _official tutorial: https://github.com/phac-nml/CryptoGenotyper/blob/docs/docs/CryptoGenotyperTutorial-CrownCopyright.pdf
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
295
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
296 -----
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
297
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
298 **Input:**
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
299
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
300 AB1 or FASTA file(s) representing Cryptosporidium's SSU rRNA (18S) or gp60 locus can be provided as single-end reads (either forward or reverse only) or as paired-end reads in contig mode (both a forward and a reverse read for each sample).
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
301
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
302 Optional: A custom reference database of SSU rRNA or gp60 locus in .fasta file format, to be used during the homology search for *Cryptosporidium* classification.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
303
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
304
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
305 **Output:**
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
306
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
307 A tabular report and a FASTA file containing the identification of the *Cryptosporidium* species/subtype and its corresponding sequence for each sample along with other relevant details.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
308 The gp60 subtyping is based on the `Deciphering a cryptic minefield: a guide to Cryptosporidium gp60 subtyping publication`_.
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
309
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
310 .. _`Deciphering a cryptic minefield: a guide to Cryptosporidium gp60 subtyping publication`: https://doi.org/10.1016/j.crpvbd.2025.100257
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
311
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
312 </help>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
313 <citations>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
314 <citation type="bibtex">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
315 @ARTICLE{githubCryptoGenotyper,
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
316 author = {Yanta, Christine A. and Bessonov, Kyrylo and Robinson, Guy and Troell, Karin and Guy, Rebecca A.},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
317 title = {CryptoGenotyper: a new bioinformatics tool to enhance Cryptosporidium identification},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
318 journal = {Food and waterborne parasitology},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
319 year = {2021},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
320 volume = {23},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
321 url = {https://doi.org/10.1016/j.fawpar.2021.e00115}
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
322 }</citation>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
323 <citation type="bibtex">
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
324 @ARTICLE{RobinsonGp60,
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
325 author = {Robinson, Gillian and Chalmers, Rachel M. and Elwin, Kirsty and Guy, Richard A. and Bessonov, Konstantin and Troell, Kristina and Xiao, Lihua},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
326 title = {Deciphering a cryptic minefield: A guide to Cryptosporidium gp60 subtyping},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
327 journal = {Current Research in Parasitology and Vector-Borne Diseases},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
328 year = {2025},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
329 volume = {7},
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
330 url = {https://doi.org/10.1016/j.crpvbd.2025.100257}
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
331 }
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
332 }</citation>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
333 </citations>
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
334
c64e19bda2a6 planemo upload for repository https://github.com/phac-nml/CryptoGenotyper commit fdca1f95a5d09edf00bddd42286b68fcb20fa981
nml
parents:
diff changeset
335 </tool>