Mercurial > repos > iuc > colibread_discosnp_rad
annotate discosnp_RAD.xml @ 3:2af5a5ca9c87 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
author | iuc |
---|---|
date | Mon, 17 Aug 2020 10:37:37 -0400 |
parents | 9ee3bf979757 |
children | 923df36f6592 |
rev | line source |
---|---|
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
1 <?xml version='1.0' encoding='utf-8'?> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
2 <tool profile="16.04" id="discosnp_rad" name="DiscoSnpRAD" version="@DISCOSNP_VERSION@"> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
3 <description>discovering polymorphism from raw unassembled RADSeq NGS reads.</description> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
4 <macros> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
6 </macros> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
7 <expand macro="discosnp_requirements" /> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
8 <command><![CDATA[ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
9 ## simple option |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
10 #if str( $input_type_options.input_type) == "single" |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
11 @discosnp_single_reads@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
12 ## paired option |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
13 #else if str( $input_type_options.input_type) == "paired" |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
14 @discosnp_paired_reads@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
15 ## mix option |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
16 #else |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
17 @discosnp_single_reads@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
18 @discosnp_paired_reads@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
19 #end if |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
20 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
21 ## get the absolute path for short_reads_connector |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
22 CONNECTOR_PATH=`which short_read_connector.sh` && |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
23 CONNECTOR_DIR=`dirname \$CONNECTOR_PATH` && |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
24 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
25 run_discoSnpRad.sh |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
26 @discosnp_inputs@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
27 -S "\$CONNECTOR_DIR" |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
28 --max_size_cluster ${max_size_cluster} |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
29 -a ${a} |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
30 ${high_precision} |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
31 --max_missing ${max_missing} |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
32 --min_rank ${min_rank} |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
33 |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
34 --max_threads \${GALAXY_SLOTS:-1} |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
35 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
36 ]]></command> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
37 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
38 <inputs> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
39 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
40 <expand macro="discosnp_inputs" /> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
41 |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
42 <param argument="--high_precision" type="boolean" checked="false" truevalue="--high_precision" falsevalue="" label="Lower recall / higher precision mode." help="With this parameter no symmetrical crossroads may be traversed during bubble detection (by default up to 5 symmetrical crossroads may be traversed during bubble detection)." /> |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
43 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
44 <param argument="-a" type="integer" label="Maximal size of ambiguity of INDELs" value="20" help="INDELS whose ambiguity is higher than this value are not output"/> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
45 |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
46 <param argument="--max_size_cluster" type="integer" label="Discards cluster of variants containing more than this number of variants." value="150"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
47 |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
48 <param argument="--max_missing" type="float" label="Remove variants with more than this proportion of missing values" value="0.95" help="Default 0.95, removes variants detected in 5% and less populations"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
49 |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
50 <param argument="--min_rank" type="float" label="Remove variants whose rank is smaller than this threshold" value="0.4"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
51 |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
52 <expand macro="discosnp_options" /> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
53 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
54 </inputs> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
55 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
56 <outputs> |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
57 <data name="vcf" from_work_dir="discoRad_*_clustered.vcf" format="vcf" label="VCF with ${tool.name} on $on_string"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
58 <data name="fasta" from_work_dir="discoRad_*_raw.fa" format="fasta" label="Fasta with ${tool.name} on $on_string"/> |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
59 </outputs> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
60 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
61 <tests> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
62 <test> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
63 <conditional name="input_type_options"> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
64 <param name="input_type" value="single"/> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
65 <param name="list_reads" value="discosnpRAD/loci_reads" ftype="fasta" /> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
66 </conditional> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
67 <param name="D" value="0"/> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
68 <param name="P" value="4"/> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
69 <param name="k" value="31"/> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
70 <param name="b" value="2"/> |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
71 <param name="max_size_cluster" value="50"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
72 <param name="max_missing" value="0.95"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
73 <param name="min_rank" value="0.0"/> |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
74 <output name="fasta" file="discosnpRAD/fasta.fa"/> |
2
9ee3bf979757
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 45e32ab41e7cdc4e3dabe87f074f052667c22574"
iuc
parents:
0
diff
changeset
|
75 <output name="vcf"> |
9ee3bf979757
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 45e32ab41e7cdc4e3dabe87f074f052667c22574"
iuc
parents:
0
diff
changeset
|
76 <assert_contents> |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
77 <has_n_lines n="31"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
78 <has_text text="Ty=SNP;Rk=0.0;UL=23;UR=39;CL=23;CR=39;Genome=.;Sd=.;Cluster=0;ClSize=2"/> |
2
9ee3bf979757
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 45e32ab41e7cdc4e3dabe87f074f052667c22574"
iuc
parents:
0
diff
changeset
|
79 <has_text text="0/1:84:604,15,604:42,42:0,0"/> |
9ee3bf979757
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 45e32ab41e7cdc4e3dabe87f074f052667c22574"
iuc
parents:
0
diff
changeset
|
80 </assert_contents> |
9ee3bf979757
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 45e32ab41e7cdc4e3dabe87f074f052667c22574"
iuc
parents:
0
diff
changeset
|
81 </output> |
3
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
82 <assert_command> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
83 <has_text text="--max_size_cluster 50"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
84 <has_text text="--max_missing 0.95"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
85 <has_text text="--min_rank 0.0"/> |
2af5a5ca9c87
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 0ed02865f048ad7471ea79509c0e23162bc29166"
iuc
parents:
2
diff
changeset
|
86 </assert_command> |
0
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
87 </test> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
88 </tests> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
89 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
90 <help><![CDATA[ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
91 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
92 **Description** |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
93 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
94 Software discoSnp is designed for discovering Single Nucleotide Polymorphism (SNP) from raw set(s) of reads obtained with Next Generation Sequencers (NGS). |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
95 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
96 DiscoSnpRad uses options specific to RAD-Seq: branching strategy, kind of extensions, abundance threshold, and kind of bubbles to be found. |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
97 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
98 Moreover, it clusters variants per locus by calling the `discoRAD_finalization.sh` pipeline. Cluster information is reported in the final provided VCF file. |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
99 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
100 Note that from release of DiscoSnp++-2.0.6, the tool also detects close SNPs and indels. |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
101 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
102 @discosnp_help@ |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
103 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
104 |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
105 ]]></help> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
106 <expand macro="citations"> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
107 <expand macro="discosnp_citation" /> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
108 </expand> |
86b6b719e47d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents:
diff
changeset
|
109 </tool> |