Mercurial > repos > iuc > rna_starsolo
comparison macros.xml @ 10:a6fba3d92531 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar commit d0c9fa48df667ffad1abd71164e6bb1d9cb16bd9"
author | iuc |
---|---|
date | Mon, 15 Mar 2021 13:46:45 +0000 |
parents | ec9cbd6b9a49 |
children | 9ee34ba73ebf |
comparison
equal
deleted
inserted
replaced
9:ec9cbd6b9a49 | 10:a6fba3d92531 |
---|---|
3 whenever you make changes to the following two version tokens! | 3 whenever you make changes to the following two version tokens! |
4 The data manager uses a symlink to this macro file to keep the STAR and | 4 The data manager uses a symlink to this macro file to keep the STAR and |
5 the index versions in sync, but you should manually adjust the +galaxy | 5 the index versions in sync, but you should manually adjust the +galaxy |
6 version number. --> | 6 version number. --> |
7 <!-- STAR version to be used --> | 7 <!-- STAR version to be used --> |
8 <token name="@VERSION@">2.7.7a</token> | 8 <token name="@VERSION@">2.7.8a</token> |
9 <!-- STAR index version compatible with this version of STAR | 9 <!-- STAR index version compatible with this version of STAR |
10 This is the STAR version that introduced the index structure expected | 10 This is the STAR version that introduced the index structure expected |
11 by the current version. | 11 by the current version. |
12 It can be found for any specific version of STAR with: | 12 It can be found for any specific version of STAR with: |
13 STAR -h | grep versionGenome | 13 STAR -h | grep versionGenome |
161 @FASTQ_GZ_OPTION@ | 161 @FASTQ_GZ_OPTION@ |
162 #end if | 162 #end if |
163 ]]></token> | 163 ]]></token> |
164 <xml name="ref_selection"> | 164 <xml name="ref_selection"> |
165 <param argument="--genomeFastaFiles" type="data" format="fasta" label="Select a reference genome" /> | 165 <param argument="--genomeFastaFiles" type="data" format="fasta" label="Select a reference genome" /> |
166 <!-- Currently, this parameter is not exposed in the wrapper, | 166 <param argument="--genomeSAindexNbases" type="integer" min="2" max="16" value="14" label="Length of the SA pre-indexing string" help="Typically between 10 and 15. Longer strings will use much more memory, but allow faster searches. For small genomes, the parameter --genomeSAindexNbases must be scaled down to min(14, log2(GenomeLength)/2 - 1)"/> |
167 but used only in the tests to avoid excessive index sizes for | |
168 the tiny test genomes. --> | |
169 <param name="genomeSAindexNbases" type="hidden" value="" /> | |
170 </xml> | 167 </xml> |
171 <xml name="stdio" > | 168 <xml name="stdio" > |
172 <stdio> | 169 <stdio> |
173 <regex match="FATAL error" source="both" level="fatal"/> | 170 <regex match="FATAL error" source="both" level="fatal"/> |
174 <regex match="EXITING: FATAL INPUT ERROR:" source="both" level="fatal"/> | 171 <regex match="EXITING: FATAL INPUT ERROR:" source="both" level="fatal"/> |
207 <param name="paired_end_collection" collection_type="list:paired" type="data_collection" format="fastq,fasta,fastq.gz,fastqsanger.gz" label="List of paired-end FASTQ files" /> | 204 <param name="paired_end_collection" collection_type="list:paired" type="data_collection" format="fastq,fasta,fastq.gz,fastqsanger.gz" label="List of paired-end FASTQ files" /> |
208 </when> | 205 </when> |
209 </conditional> | 206 </conditional> |
210 </xml> | 207 </xml> |
211 <xml name="umidedup_options"> | 208 <xml name="umidedup_options"> |
212 <option value="1MM_All" selected="true">All</option> | 209 <option value="1MM_All" selected="true">Collapse all UMIs with 1 mismatch distance to each other</option> |
213 <option value="1MM_Directional" >Directional</option> | 210 <option value="1MM_Directional_UMItools" >Directional method from the UMI-tool</option> |
211 <option value="1MM_Directional" >Directional with stringent UMI deduplication</option> | |
214 </xml> | 212 </xml> |
215 <xml name="anchor_types"> | 213 <xml name="anchor_types"> |
216 <option value="0">Read start</option> | 214 <option value="0">Read start</option> |
217 <option value="1">Read end</option> | 215 <option value="1">Read end</option> |
218 <option value="2">Adapter start</option> | 216 <option value="2">Adapter start</option> |
223 <option value="1MM" >Single match</option> | 221 <option value="1MM" >Single match</option> |
224 </xml> | 222 </xml> |
225 <xml name="cb_match_wl_cellranger"> | 223 <xml name="cb_match_wl_cellranger"> |
226 <option value="1MM_multi" selected="true" >Multiple matches (CellRanger 2)</option> | 224 <option value="1MM_multi" selected="true" >Multiple matches (CellRanger 2)</option> |
227 <option value="1MM_multi_pseudocounts" >Multiple matches (CellRanger 3)</option> | 225 <option value="1MM_multi_pseudocounts" >Multiple matches (CellRanger 3)</option> |
226 <option value="1MM_multi_Nbase_pseudocounts" >Multimatching to WL is allowed for CBs with N-bases (CellRanger 3)</option> | |
227 </xml> | |
228 <xml name="solo_adapter_params"> | |
229 <param argument="--soloAdapterSequence" type="text" value="-" label="Adapter sequence to anchor barcodes." > | |
230 <sanitizer> | |
231 <valid initial="string.digits"> | |
232 <add value="-"/> | |
233 <add value="A"/> | |
234 <add value="T"/> | |
235 <add value="C"/> | |
236 <add value="G"/> | |
237 <add value="N"/> | |
238 </valid> | |
239 </sanitizer> | |
240 </param> | |
241 <param argument="--soloAdapterMismatchesNmax" type="integer" min="1" value="1" label="Maximum number of mismatches allowed in adapter sequence" /> | |
242 <param argument="--clipAdapterType" type="select" > | |
243 <option value="Hamming" selected="true" >Adapter clipping based on Hamming distance</option> | |
244 <option value="CellRanger4" >5p and 3p adapter clipping similar to CellRanger4</option> | |
245 <option value="None" >No adapter clipping</option> | |
246 </param> | |
228 </xml> | 247 </xml> |
229 </macros> | 248 </macros> |