Mercurial > repos > mingchen0919 > rmarkdown_fastqc_report
annotate fastqc_report.xml @ 18:8635a4cee6dd draft
add boxplot for per base sequence quality
author | mingchen0919 |
---|---|
date | Thu, 09 Nov 2017 09:22:09 -0500 |
parents | 1710b0e874f1 |
children | 8c79e5b7cfc0 |
rev | line source |
---|---|
14 | 1 <tool id="fastqc_report" name="Fastqc report" version="2.0.0"> |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
2 <description> |
16 | 3 Evaluate short reads with FastQC software on a single reads file or a paired of untrimmed and trimmed reads |
4 files. | |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
5 </description> |
0 | 6 <requirements> |
11
ef11537fedb5
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit a23e23222252167ef7c3338a4872e84706df8f83-dirty
mingchen0919
parents:
10
diff
changeset
|
7 <requirement type="package" version="1.15.0.6-0">pandoc</requirement> |
0 | 8 <requirement type="package" version="1.20.0">r-getopt</requirement> |
14 | 9 <requirement type="package" version="1.3">r-rmarkdown</requirement> |
0 | 10 <requirement type="package" version="1.8.4">r-plyr</requirement> |
11 <requirement type="package" version="1.1.0">r-stringr</requirement> | |
12 <requirement type="package" version="0.2">r-dt</requirement> | |
13 <requirement type="package" version="1.4.2">r-reshape2</requirement> | |
14 <requirement type="package" version="4.5.6">r-plotly</requirement> | |
15 <requirement type="package" version="0.3.5">r-htmltools</requirement> | |
16 <requirement type="package" version="0.11.5">fastqc</requirement> | |
17 </requirements> | |
18 <stdio> | |
14 | 19 <!--redirecting stderr to a file. "XXX" is used to match with nothing so that tool running won't be interrupted during testing--> |
20 <regex match="XXX" | |
21 source="stderr" | |
22 level="warning" | |
23 description="Check the warnings_and_errors.txt file for more details."/> | |
0 | 24 </stdio> |
25 <command> | |
26 <![CDATA[ | |
27 | |
28 Rscript '${__tool_directory__}/fastqc_report_render.R' | |
14 | 29 -e $echo |
16 | 30 -r $reads_1 |
31 -n '$reads_1.name' | |
32 -R $reads_2 | |
33 -N '$reads_2.name' | |
34 -c $contaminants | |
35 -l $limits | |
14 | 36 |
0 | 37 -o $report |
38 -d $report.files_path | |
14 | 39 -s $sink_message |
0 | 40 |
14 | 41 -p '${__tool_directory__}/fastqc_report.Rmd' |
0 | 42 ]]> |
43 </command> | |
44 <inputs> | |
16 | 45 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" name="reads_1" type="data" optional="false" |
46 label="Short reads before trimming" | |
47 help="Short reads data from history. This could be reads before trimming."/> | |
48 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" name="reads_2" type="data" | |
49 label="Short reads after trimming" | |
50 help="Short reads data from history. This could be reads after trimming."/> | |
51 <param name="contaminants" type="data" format="tabular" optional="true" label="Contaminant list" | |
52 help="Specifies a non-default file which contains the list of adapter sequences which will be explicitly | |
53 searched against the library. The file must contain sets of named adapters | |
54 in the form name[tab]sequence. Lines prefixed with a hash will be ignored."/> | |
55 <param name="limits" type="data" format="txt" optional="true" label="Submodule and Limit specifing file" | |
56 help="Specifies a non-default file which contains a set of criteria | |
57 which will be used to determine the warn/error limits for the | |
58 various modules. This file can also be used to selectively | |
59 remove some modules from the output all together. The format | |
60 needs to mirror the default limits.txt file found in the | |
61 Configuration folder."/> | |
14 | 62 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false" |
63 label="Display analysis code in report?"/> | |
0 | 64 </inputs> |
65 <outputs> | |
14 | 66 <data format="html" name="report" label="fastqc report"/> |
67 <data format="txt" name="sink_message" label="Warnings and Errors" from_work_dir="warnings_and_errors.txt"/> | |
0 | 68 </outputs> |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
69 <citations> |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
70 <citation type="bibtex"> |
5
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
71 @misc{bioinformatics2014fastqc, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
72 title={FastQC}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
73 author={Bioinformatics, Babraham}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
74 year={2014} |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
75 } |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
76 </citation> |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
77 <citation type="bibtex"> |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
78 @article{allaire2016rmarkdown, |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
79 title={rmarkdown: Dynamic Documents for R, 2016}, |
14 | 80 author={Allaire, J and Cheng, Joe and Xie, Yihui and McPherson, Jonathan and Chang, Winston and Allen, Jeff |
81 and Wickham, Hadley and Atkins, Aron and Hyndman, Rob}, | |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
82 journal={R package version 0.9}, |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
83 volume={6}, |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
84 year={2016} |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
85 } |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
86 </citation> |
8
06d0fdd05cae
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
7
diff
changeset
|
87 <citation type="bibtex"> |
5
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
88 @book{xie2015dynamic, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
89 title={Dynamic Documents with R and knitr}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
90 author={Xie, Yihui}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
91 volume={29}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
92 year={2015}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
93 publisher={CRC Press} |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
94 } |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
95 </citation> |
8
06d0fdd05cae
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
7
diff
changeset
|
96 <citation type="bibtex"> |
9
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
97 @misc{plotly2017, |
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
98 title = {plotly: Create Interactive Web Graphics via 'plotly.js'}, |
14 | 99 author = {Carson Sievert and Chris Parmer and Toby Hocking and Scott Chamberlain and Karthik Ram and |
100 Marianne Corvellec and Pedro Despouy}, | |
9
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
101 year = {2017}, |
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
102 note = {R package version 4.6.0}, |
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
103 url = {https://CRAN.R-project.org/package=plotly}, |
5
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
104 } |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
105 </citation> |
8
06d0fdd05cae
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
7
diff
changeset
|
106 <citation type="bibtex"> |
9
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
107 @misc{highcharter2017, |
5
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
108 title = {highcharter: A Wrapper for the 'Highcharts' Library}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
109 author = {Joshua Kunst}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
110 year = {2017}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
111 note = {R package version 0.5.0}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
112 url = {https://CRAN.R-project.org/package=highcharter}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
113 } |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
114 </citation> |
8
06d0fdd05cae
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
7
diff
changeset
|
115 <citation type="bibtex"> |
9
8772e38fbabb
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
mingchen0919
parents:
8
diff
changeset
|
116 @misc{formattable2016, |
5
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
117 title = {formattable: Create 'Formattable' Data Structures}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
118 author = {Kun Ren and Kenton Russell}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
119 year = {2016}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
120 note = {R package version 0.2.0.1}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
121 url = {https://CRAN.R-project.org/package=formattable}, |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
122 } |
3b275377dd27
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5
mingchen0919
parents:
4
diff
changeset
|
123 </citation> |
12
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
124 <citation> |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
125 @article{ewels2016multiqc, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
126 title={MultiQC: summarize analysis results for multiple tools and samples in a single report}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
127 author={Ewels, Philip and Magnusson, M{\aa}ns and Lundin, Sverker and K{\"a}ller, Max}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
128 journal={Bioinformatics}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
129 volume={32}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
130 number={19}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
131 pages={3047--3048}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
132 year={2016}, |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
133 publisher={Oxford University Press} |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
134 } |
3d317469c69c
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
mingchen0919
parents:
11
diff
changeset
|
135 </citation> |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
136 </citations> |
0 | 137 </tool> |
4
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
138 |
3073b7bd0807
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_report commit ddb1f6aca7619aea2e660b1729367841b56ba4c9
mingchen0919
parents:
3
diff
changeset
|
139 |