Mercurial > repos > nilesh > rseqc
annotate read_NVC.xml @ 41:e1dd49718284
Fixed tool versions
author | Lance Parsons <lparsons@princeton.edu> |
---|---|
date | Wed, 23 Jul 2014 10:52:30 -0400 |
parents | 1e66f05a23aa |
children |
rev | line source |
---|---|
40
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
1 <tool id="rseqc_read_NVC" name="Read NVC" version="2.3.9"> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
2 <description>to check the nucleotide composition bias</description> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
3 <requirements> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
4 <requirement type="package" version="3.0.1">R</requirement> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
5 <requirement type="package" version="1.7.1">numpy</requirement> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
6 <requirement type="package" version="2.3.9">rseqc</requirement> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
7 </requirements> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
8 <command> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
9 read_NVC.py -i $input -o output $nx |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
10 </command> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
11 <stdio> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
12 <exit_code range="1:" level="fatal" description="An error occured during execution, see stderr and stdout for more information" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
13 <regex match="[Ee]rror" source="both" description="An error occured during execution, see stderr and stdout for more information" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
14 </stdio> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
15 <inputs> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
16 <param name="input" type="data" format="bam,sam" label="input bam/sam file" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
17 <param name="nx" type="boolean" value="false" truevalue="-x" falsevalue="" label="Include N,X in NVC plot"/> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
18 </inputs> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
19 <outputs> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
20 <data format="xls" name="outputxls" from_work_dir="output.NVC.xls" label="${tool.name} on ${on_string} (XLS)" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
21 <data format="txt" name="outputr" from_work_dir="output.NVC_plot.r" label="${tool.name} on ${on_string} (R Script)" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
22 <data format="pdf" name="outputpdf" from_work_dir="output.NVC_plot.pdf" label="${tool.name} on ${on_string} (PDF)" /> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
23 </outputs> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
24 <help> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
25 read_NVC.py |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
26 +++++++++++ |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
27 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
28 This module is used to check the nucleotide composition bias. Due to random priming, certain |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
29 patterns are over represented at the beginning (5'end) of reads. This bias could be easily |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
30 examined by NVC (Nucleotide versus cycle) plot. NVC plot is generated by overlaying all |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
31 reads together, then calculating nucleotide composition for each position of read |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
32 (or each sequencing cycle). In ideal condition (genome is random and RNA-seq reads is |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
33 randomly sampled from genome), we expect A%=C%=G%=T%=25% at each position of reads. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
34 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
35 NOTE: this program expect a fixed read length |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
36 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
37 Inputs |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
38 ++++++++++++++ |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
39 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
40 Input BAM/SAM file |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
41 Alignment file in BAM/SAM format. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
42 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
43 Include N,X in NVC plot |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
44 Plots N and X alongside A, T, C, and G in plot. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
45 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
46 Output |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
47 ++++++++++++++ |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
48 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
49 This module is used to check the nucleotide composition bias. Due to random priming, certain patterns are over represented at the beginning (5'end) of reads. This bias could be easily examined by NVC (Nucleotide versus cycle) plot. NVC plot is generated by overlaying all reads together, then calculating nucleotide composition for each position of read (or each sequencing cycle). In ideal condition (genome is random and RNA-seq reads is randomly sampled from genome), we expect A%=C%=G%=T%=25% at each position of reads. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
50 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
51 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
52 1. output.NVC.xls: plain text file, each row is position of read (or sequencing cycle), each column is nucleotide (A,C,G,T,N,X) |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
53 2. output.NVC_plot.r: R script to generate NVC plot. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
54 3. output.NVC_plot.pdf: NVC plot. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
55 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
56 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
57 .. image:: http://rseqc.sourceforge.net/_images/NVC_plot.png |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
58 :height: 600 px |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
59 :width: 600 px |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
60 :scale: 80 % |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
61 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
62 ----- |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
63 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
64 About RSeQC |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
65 +++++++++++ |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
66 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
67 The RSeQC_ package provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. "Basic modules" quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while "RNA-seq specific modules" investigate sequencing saturation status of both splicing junction detection and expression estimation, mapped reads clipping profile, mapped reads distribution, coverage uniformity over gene body, reproducibility, strand specificity and splice junction annotation. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
68 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
69 The RSeQC package is licensed under the GNU GPL v3 license. |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
70 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
71 .. image:: http://rseqc.sourceforge.net/_static/logo.png |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
72 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
73 .. _RSeQC: http://rseqc.sourceforge.net/ |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
74 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
75 |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
76 </help> |
1e66f05a23aa
Reupload tarball (all files were again deleted by toolshed).
lparsons
parents:
diff
changeset
|
77 </tool> |