comparison QDNAseq.xml @ 27:f89205f51e27 draft default tip

Uploaded
author stef
date Mon, 06 Jul 2015 05:41:08 -0400
parents ab1ab10c68af
children
comparison
equal deleted inserted replaced
26:069289631381 27:f89205f51e27
16 <command interpreter="Rscript"> 16 <command interpreter="Rscript">
17 QDNAseq.R 17 QDNAseq.R
18 $qdnaseq_cfg 18 $qdnaseq_cfg
19 \$QDNASEQ_PATH 19 \$QDNASEQ_PATH
20 </command> 20 </command>
21
22 <version_command interpreter="Rscript">QDNAseq-version.R</version_command>
21 23
22 <stdio> 24 <stdio>
23 <!-- Anything higher than 0 means the R script didnt finish (correctly) --> 25 <!-- Anything higher than 0 means the R script didnt finish (correctly) -->
24 <!-- Because different R packages deal with err/warn differently unable to waterproof this --> 26 <!-- Because different R packages deal with err/warn differently unable to waterproof this -->
25 <exit_code range="1:" level="fatal" description="R script finished too early, check log" /> 27 <exit_code range="1:" level="fatal" description="R script finished too early, check log" />
272 <data format="html" name="htmlFile" label="QDNAseq: ${jobName} report" /> 274 <data format="html" name="htmlFile" label="QDNAseq: ${jobName} report" />
273 275
274 <!-- WHY does there seem to be no way to use split() within this code in galaxy!!! --> 276 <!-- WHY does there seem to be no way to use split() within this code in galaxy!!! -->
275 <!-- now have to fall back to using unique names within binSizes instead of just integers --> 277 <!-- now have to fall back to using unique names within binSizes instead of just integers -->
276 <!-- Problem with integers is that both "1" and "5" are also present in eg "15,100" --> 278 <!-- Problem with integers is that both "1" and "5" are also present in eg "15,100" -->
277 <data format="tsv" name="txt_1000" label="QDNAseq: ${jobName} txt 1000kb"> 279 <data format="tabular" name="txt_1000" label="QDNAseq: ${jobName} txt 1000kb">
278 <filter>( "bin1000kb" in binSizes and txt2history == 'TRUE')</filter> 280 <filter>( "bin1000kb" in binSizes and txt2history == 'TRUE')</filter>
279 </data> 281 </data>
280 <data format="tsv" name="txt_100" label="QDNAseq: ${jobName} txt 100kb"> 282 <data format="tabular" name="txt_100" label="QDNAseq: ${jobName} txt 100kb">
281 <filter>("bin100kb" in binSizes and txt2history == 'TRUE')</filter> 283 <filter>("bin100kb" in binSizes and txt2history == 'TRUE')</filter>
282 </data> 284 </data>
283 <data format="tsv" name="txt_30" label="QDNAseq: ${jobName} txt 30kb"> 285 <data format="tabular" name="txt_30" label="QDNAseq: ${jobName} txt 30kb">
284 <filter>("bin30kb" in binSizes and txt2history == 'TRUE')</filter> 286 <filter>("bin30kb" in binSizes and txt2history == 'TRUE')</filter>
285 </data> 287 </data>
286 <data format="tsv" name="txt_15" label="QDNAseq: ${jobName} txt 15kb"> 288 <data format="tabular" name="txt_15" label="QDNAseq: ${jobName} txt 15kb">
287 <filter>("bin15kb" in binSizes and txt2history == 'TRUE')</filter> 289 <filter>("bin15kb" in binSizes and txt2history == 'TRUE')</filter>
288 </data> 290 </data>
289 <data format="tsv" name="txt_5" label="QDNAseq: ${jobName} txt 5kb"> 291 <data format="tabular" name="txt_5" label="QDNAseq: ${jobName} txt 5kb">
290 <filter>("bin5kb" in binSizes and txt2history == 'TRUE')</filter> 292 <filter>("bin5kb" in binSizes and txt2history == 'TRUE')</filter>
291 </data> 293 </data>
292 <data format="tsv" name="txt_1" label="QDNAseq: ${jobName} txt 1kb"> 294 <data format="tabular" name="txt_1" label="QDNAseq: ${jobName} txt 1kb">
293 <filter>("bin1kb" in binSizes and txt2history == 'TRUE')</filter> 295 <filter>("bin1kb" in binSizes and txt2history == 'TRUE')</filter>
294 </data> 296 </data>
295 297
296 <data format="rds" name="rds_1000" label="QDNAseq: ${jobName} rds 1000kb"> 298 <data format="rds" name="rds_1000" label="QDNAseq: ${jobName} rds 1000kb">
297 <filter>( "bin1000kb" in binSizes and rds2history == 'TRUE')</filter> 299 <filter>( "bin1000kb" in binSizes and rds2history == 'TRUE')</filter>
354 356
355 The input BAMs are expected to be **single end reads of 50bp length** mapped to GRCh37/hg19 genome build. Other experiment setups are currently not tested or supported within galaxy. See the documentation of QDNAseq at bioconductor on how to deal with different setups (or keep fingers crossed ;) ) 357 The input BAMs are expected to be **single end reads of 50bp length** mapped to GRCh37/hg19 genome build. Other experiment setups are currently not tested or supported within galaxy. See the documentation of QDNAseq at bioconductor on how to deal with different setups (or keep fingers crossed ;) )
356 358
357 .. class:: warningmark 359 .. class:: warningmark
358 360
359 Requires **internet access** for downloading bin-annotations from bitbucket and to show some styling (css) of the final report 361 Some optional history input/output files are of format "rds" (file format to store a R object). This is not registered in galaxy by default, so has to be added to the available datatypes.
360 362
361 ----- 363 -----
362 364
363 **Citation** 365 **Citation**
364 366