Mercurial > repos > mingchen0919 > rmarkdown_fastq_dump
comparison fastq_dump_se.xml @ 0:7ec600e7dba7 draft
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastq_dump commit 6e3aaf47c3178dc89ad303c7fd398c08961064c0-dirty
author | mingchen0919 |
---|---|
date | Wed, 27 Sep 2017 09:25:48 -0400 |
parents | |
children | 496359735aa1 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7ec600e7dba7 |
---|---|
1 <tool id="rmarkdown_fastqc_dump" name="fastqc-dump" version="1.0.0"> | |
2 <requirements> | |
3 <requirement type="package" version="1.15.0.6-0">pandoc</requirement> | |
4 <requirement type="package" version="1.20.0">r-getopt</requirement> | |
5 <requirement type="package" version="1.2">r-rmarkdown</requirement> | |
6 <requirement type="package" version="0.3.5">r-htmltools</requirement> | |
7 <requirement type="package" version="0.5.0">r-dplyr</requirement> | |
8 <requirement type="package" version="0.5.4">parallel-fastq-dump</requirement> | |
9 </requirements> | |
10 <description> | |
11 Download and extract single end reads in fastq or fasta format from NCBI SRA. The output is a list of datasets | |
12 collection. | |
13 </description> | |
14 <stdio> | |
15 <regex match="Execution halted" | |
16 source="both" | |
17 level="fatal" | |
18 description="Execution halted." /> | |
19 <regex match="Error in" | |
20 source="both" | |
21 level="fatal" | |
22 description="An undefined error occured, please check your intput carefully and contact your administrator." /> | |
23 <regex match="Fatal error" | |
24 source="both" | |
25 level="fatal" | |
26 description="An undefined error occured, please check your intput carefully and contact your administrator." /> | |
27 </stdio> | |
28 <command> | |
29 <![CDATA[ | |
30 Rscript '${__tool_directory__}/fastqc_dump_se_render.R' | |
31 -i $sra_accession | |
32 -e $echo | |
33 -f $format | |
34 | |
35 -r $report | |
36 -d $report.files_path | |
37 | |
38 -t '${__tool_directory__}/fastq_dump_se.Rmd' | |
39 ]]> | |
40 </command> | |
41 <inputs> | |
42 <param type="text" name="sra_accession" label="SRR/DRR/ERR accessions" optional="false" | |
43 help="A list of SRR/DRR/ERR accessions separated by comma or space. e.g. SRR6077558,ERR343809"/> | |
44 <param type="boolean" name="format" truevalue="fastq" falsevalue="fasta" checked="false" label="output files in fastq (true) or fasta (false)?"/> | |
45 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Display analysis code in report?" /> | |
46 </inputs> | |
47 <outputs> | |
48 <collection type="list" name="list_collection"> | |
49 <discover_datasets pattern="__name_and_ext__" directory="read_files_directory" /> | |
50 </collection> | |
51 </outputs> | |
52 </tool> |