root/galaxy-central/tools/filters/ucsc_gene_bed_to_intron_bed.xml @ 2

リビジョン 2, 2.8 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1<tool id="gene2intron1" name="Gene BED To Intron BED">
2<description>expander</description>
3  <command interpreter="python">ucsc_gene_bed_to_intron_bed.py --input=$input1 --output=$out_file1</command>
4  <inputs>
5    <param name="input1" type="data" format="interval" label="UCSC Gene Table"/>
6   
7  </inputs>
8  <outputs>
9    <data name="out_file1" format="bed"/>
10  </outputs>
11  <tests>
12    <test>
13      <param name="input1" value="3.bed" />
14      <output name="out_file1" file="cf-gene2intron.dat"/>
15    </test>
16  </tests>
17<help>
18
19**Syntax**
20
21This tool converts a UCSC gene bed format file to a list of bed format lines corresponding to requested features of each gene.
22
23- **BED format** Browser Extensible Data format was designed at UCSC for displaying data tracks in the Genome Browser. It has three required fields and twelve additional optional ones::
24
25    The first three BED fields (required) are:
26    1. chrom - The name of the chromosome (e.g. chr1, chrY_random).
27    2. chromStart - The starting position in the chromosome. (The first base in a chromosome is numbered 0.)
28    3. chromEnd - The ending position in the chromosome, plus 1 (i.e., a half-open interval).
29
30    The twelve additional BED fields (optional) are:
31    4. name - The name of the BED line.
32    5. score - A score between 0 and 1000.
33    6. strand - Defines the strand - either '+' or '-'.
34    7. thickStart - The starting position where the feature is drawn thickly at the Genome Browser.
35    8. thickEnd - The ending position where the feature is drawn thickly at the Genome Browser.
36    9. reserved - This should always be set to zero.
37   10. blockCount - The number of blocks (exons) in the BED line.
38   11. blockSizes - A comma-separated list of the block sizes. The number of items in this list should correspond to blockCount.
39   12. blockStarts - A comma-separated list of block starts. All of the blockStart positions should be calculated relative to chromStart. The number of items in this list should correspond to blockCount.
40   13. expCount - The number of experiments.
41   14. expIds - A comma-separated list of experiment ids. The number of items in this list should correspond to expCount.
42   15. expScores - A comma-separated list of experiment scores. All of the expScores should be relative to expIds. The number of items in this list should correspond to expCount.
43
44-----
45
46**Example**
47
48- A UCSC gene bed format file::
49
50    chr7 127475281 127491632 NM_000230 0 + 127486022 127488767 0 3 29,172,3225,    0,10713,13126
51    chr7 127486011 127488900 D49487    0 + 127486022 127488767 0 2 155,490,        0,2399
52
53- Converts the above file to a list of bed lines, which has the introns::
54
55    chr7 127475311 127475993 NM_000230 0 +
56    chr7 127486167 127488406 NM_000230 0 +
57    chr7 127486167 127488409 D49487    0 +
58
59</help>
60</tool>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。