Mercurial > repos > iuc > art
annotate art_454.xml @ 11:0eea5a166d73 draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
| author | iuc |
|---|---|
| date | Mon, 30 Aug 2021 21:41:16 +0000 |
| parents | 3f163b178c5c |
| children |
| rev | line source |
|---|---|
| 0 | 1 <tool id="art_454" name="ART 454" version="2014.11.03.0"> |
| 2 <description>simulates pyrosequencing data</description> | |
|
11
0eea5a166d73
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents:
7
diff
changeset
|
3 <expand macro="bio_tools"/> |
| 0 | 4 <macros> |
| 5 <import>macros.xml</import> | |
| 6 </macros> | |
|
5
7d6f5eef1245
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 321bb0b81c749a898c0b59447a5a87d68c4dd058
iuc
parents:
0
diff
changeset
|
7 <expand macro="requirements"/> |
| 0 | 8 <expand macro="stdio" /> |
| 9 <command><![CDATA[ | |
| 10 art_454 $t | |
| 11 | |
| 12 $aln | |
| 13 $sam | |
| 14 | |
| 15 #if $rndSeed and $rndSeed > -1: | |
| 16 -r $rndSeed | |
| 17 #end if | |
| 18 | |
| 19 #if $c | |
| 20 -c $c | |
| 21 #end if | |
| 22 | |
| 23 #if $generate.amplicon.use_amplicon == "amplicon_true": | |
| 24 #if $generate.choice == "single_end": | |
| 25 -A | |
| 26 #else: | |
| 27 -B | |
| 28 #end if | |
| 29 #end if | |
| 30 | |
| 31 $input_seq_file | |
| 32 output | |
| 33 | |
| 34 #if $generate.choice == "single_end": | |
| 35 $fold_coverage | |
| 36 #else: | |
| 37 $fold_coverage | |
| 38 $generate.fragment_size | |
| 39 $generate.fragment_sd | |
| 40 #end if | |
| 41 | |
| 42 #if $generate.amplicon.use_amplicon == "amplicon_true": | |
| 43 #if $generate.choice == "single_end": | |
| 44 $generate.amplicon.reads_per_amplicon | |
| 45 #else: | |
| 46 $generate.amplicon.read_pairs_per_amplicon | |
| 47 #end if | |
| 48 #end if | |
| 49 ; | |
| 50 ]]></command> | |
| 51 <inputs> | |
| 52 <param label="DNA/RNA reference sequence" format="fasta" name="input_seq_file" type="data"/> | |
| 53 <param label="the fold of read coverage over the reference sequences" name="fold_coverage" type="integer" value="20"/> | |
| 54 | |
| 55 <conditional name="generate"> | |
| 56 <param name="choice" type="select" label="Type of data to generate"> | |
| 57 <option value="single_end">Single-End</option> | |
| 58 <option value="paired_end">Paired-End</option> | |
| 59 </param> | |
| 60 <when value="single_end"> | |
| 61 <expand macro="amplicon" /> | |
| 62 </when> | |
| 63 <when value="paired_end"> | |
| 64 <expand macro="frag_len_sd" /> | |
| 65 <expand macro="amplicon_pair" /> | |
| 66 </when> | |
| 67 </conditional> | |
| 68 | |
| 69 | |
| 70 <expand macro="sam" /> | |
| 71 <expand macro="aln" /> | |
| 72 | |
| 73 <param type="boolean" label="indicate to simulate reads from the built-in GS FLX Titanium profile (-t)" name="t" truevalue="-t" falsevalue="" optional="true" /> | |
| 74 <param label="specify the number of flow cycles by the sequencer [100 for GS-FLX, 200 for GS-FLX Titanium] (-c)" name="c" type="integer" value="100" optional="true" /> | |
| 75 | |
| 76 <expand macro="rndSeed" /> | |
| 77 </inputs> | |
| 78 <outputs> | |
| 79 <!-- Single End --> | |
| 80 <data format="fastq" name="output_fq1_single" from_work_dir="output.fq" label="Simulated of 454 sequencing of $input_seq_file.name"> | |
| 81 <filter>generate['choice'] == "single_end"</filter> | |
| 82 </data> | |
| 83 | |
| 84 <!-- Paired End --> | |
| 85 <data format="fastq" name="output_fq1_paired" from_work_dir="output1.fq" label="Simulated of 454 sequencing of $input_seq_file.name (Forward)"> | |
| 86 <filter>generate['choice'] != "single_end"</filter> | |
| 87 </data> | |
| 88 <data format="fastq" name="output_fq2_paired" from_work_dir="output2.fq" label="Simulated of 454 sequencing of $input_seq_file.name (Reverse)"> | |
| 89 <filter>generate['choice'] != "single_end"</filter> | |
| 90 </data> | |
| 91 <data format="sam" name="output_sam" from_work_dir="output.sam" label="Mapping of Simulated 454 data to $input_seq_file.name"> | |
| 92 <filter>sam</filter> | |
| 93 </data> | |
| 94 | |
| 95 <!-- Single End --> | |
| 96 <data format="aln" name="output_aln1_single" from_work_dir="output.aln" label="Alignment of Simulated 454 data to $input_seq_file.name"> | |
| 97 <filter>aln and generate['choice'] == "single_end"</filter> | |
| 98 </data> | |
| 99 <!-- Paired End --> | |
| 100 <data format="aln" name="output_aln1_paired" from_work_dir="output1.aln" label="Alignment of Simulated 454 data to $input_seq_file.name"> | |
| 101 <filter>aln and generate['choice'] != "single_end"</filter> | |
| 102 </data> | |
| 103 <data format="aln" name="output_aln2_paired" from_work_dir="output2.aln" label="Alignment of Simulated 454 data to $input_seq_file.name"> | |
| 104 <filter>generate['choice'] != "single_end" and generate['amplicon']['use_amplicon'] == "amplicon_true"</filter> | |
| 105 </data> | |
| 106 </outputs> | |
| 107 <tests> | |
| 108 <!-- Single End tests --> | |
| 109 <test> | |
| 110 <param name="rndSeed" value="42" /> | |
| 111 <param name="input_seq_file" value="input.fa" /> | |
| 112 <param name="fold_coverage" value="20" /> | |
| 113 <param name="choice" value="single_end" /> | |
|
7
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
114 <output name="output_fq1_single" file="art.454.01.fq" compare="sim_size" delta="5000" /> |
| 0 | 115 </test> |
| 116 <test> | |
| 117 <param name="rndSeed" value="42" /> | |
| 118 <param name="input_seq_file" value="input.fa" /> | |
| 119 <param name="fold_coverage" value="20" /> | |
| 120 <param name="choice" value="single_end" /> | |
| 121 <param name="sam" value="True" /> | |
|
7
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
122 <output name="output_fq1_single" file="art.454.01.fq" compare="sim_size" delta="5000" /> |
|
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
123 <output name="output_sam" file="art.454.01.sam" compare="sim_size" delta="5000"/> |
| 0 | 124 </test> |
| 125 <!-- Paired End tests --> | |
| 126 <test> | |
| 127 <param name="rndSeed" value="42" /> | |
| 128 <param name="input_seq_file" value="input.fa" /> | |
| 129 <param name="fold_coverage" value="20" /> | |
| 130 <param name="choice" value="paired_end" /> | |
| 131 <param name="fragment_size" value="105" /> | |
| 132 <param name="fragment_sd" value="5" /> | |
| 133 <param name="sam" value="True" /> | |
|
7
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
134 <output name="output_fq1_paired" file="art.454.021.fq" compare="sim_size" delta="5000" /> |
|
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
135 <output name="output_fq2_paired" file="art.454.022.fq" compare="sim_size" delta="5000" /> |
|
3f163b178c5c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/art commit 4f3b019991c8a322870d1130a7c0a34d5c09758f
iuc
parents:
5
diff
changeset
|
136 <output name="output_sam" file="art.454.02.sam" compare="sim_size" delta="5000"/> |
| 0 | 137 </test> |
| 138 </tests> | |
| 139 <help><![CDATA[ | |
| 140 Art 454 Pyrosequencing Simulator | |
| 141 ================================ | |
| 142 | |
| 143 ART_454 is a simulation program to generate sequence read data of Roche 454 | |
| 144 Pyrosequencing sequencers. ART generates reads according to the empirical read | |
| 145 quality profile and the calibrated error profile of uncall/overcall | |
| 146 homopolymers from real 454 read data. ART has been using for testing or | |
| 147 benchmarking a variety of method or tools for next-generation sequencing data | |
| 148 analysis, including read alignment, de novo assembly, detection of SNP, CNV, or | |
| 149 other structure variation. | |
| 150 | |
| 151 art_454 can generate both single-end and paired-end of 454 sequencing platform. | |
| 152 Besides for regular genome DNA and cDNA sequencing simulation, art_454 also | |
| 153 supports amplicon sequencing. The reference sequences can be either DNA or RNA. | |
| 154 ]]></help> | |
| 155 <expand macro="citation" /> | |
| 156 </tool> | |
| 157 |
