Mercurial > repos > devteam > fastx_quality_statistics
annotate fastx_quality_statistics.xml @ 2:76cefe061c3d draft
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
| author | devteam |
|---|---|
| date | Tue, 13 Oct 2015 12:41:32 -0400 |
| parents | 8c60fa8ae153 |
| children | 29924496aeb0 |
| rev | line source |
|---|---|
| 0 | 1 <tool id="cshl_fastx_quality_statistics" version="1.0.0" name="Compute quality statistics"> |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
2 <description></description> |
| 0 | 3 <requirements> |
| 4 <requirement type="package" version="0.0.13">fastx_toolkit</requirement> | |
| 5 </requirements> | |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
6 <command> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
7 <![CDATA[ |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
8 zcat -f < '$input' | fastx_quality_stats -o '$output' -Q 33 |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
9 ]]> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
10 </command> |
| 0 | 11 |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
12 <inputs> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
13 <param format="fastqsanger" name="input" type="data" label="Library to analyse" /> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
14 </inputs> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
15 <outputs> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
16 <data format="txt" name="output" metadata_source="input" /> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
17 </outputs> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
18 <tests> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
19 <test> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
20 <param name="input" value="fastq_stats1.fastq" ftype="fastqsanger"/> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
21 <output name="output" file="fastq_stats1.out" /> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
22 </test> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
23 </tests> |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
24 <help> |
| 0 | 25 **What it does** |
| 26 | |
| 27 Creates quality statistics report for the given Solexa/FASTQ library. | |
| 28 | |
| 29 .. class:: infomark | |
| 30 | |
| 31 **TIP:** This statistics report can be used as input for **Quality Score** and **Nucleotides Distribution** tools. | |
| 32 | |
| 33 ----- | |
| 34 | |
| 35 **The output file will contain the following fields:** | |
| 36 | |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
37 * column = column number (1 to 36 for a 36-cycles read Solexa file) |
| 0 | 38 * count = number of bases found in this column. |
| 39 * min = Lowest quality score value found in this column. | |
| 40 * max = Highest quality score value found in this column. | |
| 41 * sum = Sum of quality score values for this column. | |
| 42 * mean = Mean quality score value for this column. | |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
43 * Q1 = 1st quartile quality score. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
44 * med = Median quality score. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
45 * Q3 = 3rd quartile quality score. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
46 * IQR = Inter-Quartile range (Q3-Q1). |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
47 * lW = 'Left-Whisker' value (for boxplotting). |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
48 * rW = 'Right-Whisker' value (for boxplotting). |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
49 * A_Count = Count of 'A' nucleotides found in this column. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
50 * C_Count = Count of 'C' nucleotides found in this column. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
51 * G_Count = Count of 'G' nucleotides found in this column. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
52 * T_Count = Count of 'T' nucleotides found in this column. |
|
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
53 * N_Count = Count of 'N' nucleotides found in this column. |
| 0 | 54 |
| 55 | |
| 56 For example:: | |
| 57 | |
| 58 1 6362991 -4 40 250734117 39.41 40 40 40 0 40 40 1396976 1329101 678730 2958184 0 | |
| 59 2 6362991 -5 40 250531036 39.37 40 40 40 0 40 40 1786786 1055766 1738025 1782414 0 | |
| 60 3 6362991 -5 40 248722469 39.09 40 40 40 0 40 40 2296384 984875 1443989 1637743 0 | |
| 61 4 6362991 -4 40 248214827 39.01 40 40 40 0 40 40 2536861 1167423 1248968 1409739 0 | |
| 62 36 6362991 -5 40 117158566 18.41 7 15 30 23 -5 40 4074444 1402980 63287 822035 245 | |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
63 |
| 0 | 64 ------ |
| 65 | |
| 66 This tool is based on `FASTX-toolkit`__ by Assaf Gordon. | |
| 67 | |
| 68 .. __: http://hannonlab.cshl.edu/fastx_toolkit/ | |
|
2
76cefe061c3d
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
1
diff
changeset
|
69 </help> |
| 0 | 70 <!-- FASTQ-Statistics is part of the FASTX-toolkit, by A.Gordon (gordon@cshl.edu) --> |
| 71 </tool> |
