annotate tools/rgenetics/rgRegion.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="rgRegion" name="Subset:">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>genotypes from genomic region</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 rgRegion.py $infile $r $title $out_file1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <page>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <param name="infile" type="data" format="lped" label="Linkage ped genotype file name from current history" size="80"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <param name="title" type="text" size="80" label="Title for output files" optional="true"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 help="Descriptive title for new genotype/map files" value="RGRegion" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 <param name="r" type="text" label="Region" help="Cut and paste a UCSC browser region"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 size="80" value="chr9:119,506,000-122,518,000"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <param name="rslist" type="text" area="true" label="List of rs numbers" help="Type (or cut and paste) a space or newline separated list of rs numbers"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 size="5x20"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <param name="outformat" type="select" label="Output file format" dynamic_options="get_rgRegionOutFormats()" size="80"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </page>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <data format="lped" name="out_file1" label="${title}.lped" metadata_source="infile" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 **Syntax**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 - **Source** is the file you want to extract some columns from over a genomic region such as a gene or chromosome
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 - **Tag** is the name to give the results file for this run
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 - **Region** is the genomic region cut and paste from a UCSC browser location window
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 - **Genome Build** is the version of the genome your markers are from - use hg18 for CAMP illumina data
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 **Summary**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 This tool is a very general purpose report builder. It can cut specific columns from
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 amalgamated analyses - eg powers and pvalues,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 or regressions over a specified genomic region (given as a UCSC browser location - eg)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 It takes a tab delimited file containing rs chrom offset float1..floatn and cuts out a region and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 a subset of the columns into a tabular file. If you make sure that RS is included, the
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 result that appears in your history will have a direct link to ucsc genome graphs for viewing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 in full genomic context
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 ross lazarus (ross.lazarus@gmail.com)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 August 2007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 released under the LGPL. see documentation for license terms.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 </tool>