Mercurial > repos > vipints > fml_gff3togtf
annotate GFFtools-GX/README @ 3:ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
author | vipints |
---|---|
date | Wed, 11 Jun 2014 16:29:25 -0400 |
parents | |
children |
rev | line source |
---|---|
3
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
1 A collection of tools for converting genome annotation between GTF (Gene Transfer Format), |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
2 BED (Browser Extensible Data) and GFF (Generic Feature Format). |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
3 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
4 INTRODUCTION |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
5 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
6 Several genome annotation centers provide their data in GTF, BED, GFF3 etc. I have few programs |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
7 they mainly deals with converting between GTF, BED and GFF3 formats. They are extensively tested |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
8 with files from different centers like ENSEMBL, UCSC, JGI and NCBI AceView. Please follow the |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
9 instructions below to clone these tools into your galaxy instance. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
10 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
11 CONTENTS |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
12 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
13 Tool configuration files in *.xml format. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
14 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
15 gtf_to_gff.xml |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
16 gff_to_gtf.xml |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
17 bed_to_gff.xml |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
18 gff_to_bed.xml |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
19 gbk_to_gff.xml |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
20 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
21 Python based scripts. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
22 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
23 gtf_to_gff.py: convert data from GTF to valid GFF3. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
24 gff_to_gtf.py: convert data from GFF3 to GTF. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
25 bed_to_gff.py: convert data from a 12 column UCSC wiggle BED format to GFF3. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
26 gff_to_bed.py: convert gene transcript annotation from GFF3 to UCSC wiggle 12 column BED format. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
27 gbk_to_gff.py: convert data from genbank format to GFF. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
28 GFFParser.py: Parse GFF/GTF files. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
29 helper.py: Utility functions. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
30 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
31 test-data: Test data set. (move to your galaxy_root_folder/test-data/) |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
32 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
33 You may need to move the test files into your test-data directory so galaxy can find them. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
34 If you want to run the functional tests eg as: |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
35 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
36 exmaple: |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
37 sh run_functional_tests.sh -id fml_gtf2gff |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
38 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
39 REQUIREMENTS |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
40 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
41 python |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
42 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
43 COMMENTS/QUESTIONS |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
44 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
45 I can be reached at vipin [at] cbio.mskcc.org |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
46 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
47 LICENSE |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
48 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
49 Copyright (C) 2009-2012 Friedrich Miescher Laboratory of the Max Planck Society |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
50 2013-2014 Memorial Sloan Kettering Cancer Center |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
51 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
52 This program is free software; you can redistribute it and/or modify |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
53 it under the terms of the GNU General Public License as published by |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
54 the Free Software Foundation; either version 3 of the License, or |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
55 (at your option) any later version. |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
56 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
57 COURTESY |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
58 |
ff2c2e6f4ab3
Uploaded version 2.0.0 of gfftools ready to import to local instance
vipints
parents:
diff
changeset
|
59 To the Galaxy Team. |