~ubuntu-branches/ubuntu/precise/bioperl/precise

« back to all changes in this revision

Viewing changes to Bio/SeqFeature/Tools/TypeMapper.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-01-27 22:48:22 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100127224822-ebot4qbrjxcv38au
Tags: 1.6.1-1ubuntu1
* Merge from Debian testing, remaining changes:
  - disable tests, they produce a FTBFS trying to access the network 
    during run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: TypeMapper.pm 11333 2007-03-28 22:39:13Z bosborne $
 
1
# $Id: TypeMapper.pm 16123 2009-09-17 12:57:27Z cjfields $
2
2
#
3
3
# bioperl module for Bio::SeqFeature::Tools::TypeMapper
4
4
#
 
5
# Please direct questions and support issues to <bioperl-l@bioperl.org> 
 
6
#
5
7
# Cared for by Chris Mungall <cjm@fruitfly.org>
6
8
#
7
9
# Copyright Chris Mungall
60
62
  bioperl-l@bioperl.org                         - General discussion
61
63
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
62
64
 
 
65
=head2 Support 
 
66
 
 
67
Please direct usage questions or support issues to the mailing list:
 
68
 
 
69
I<bioperl-l@bioperl.org>
 
70
 
 
71
rather than to the module maintainer directly. Many experienced and 
 
72
reponsive experts will be able look at the problem and quickly 
 
73
address it. Please include a thorough description of the problem 
 
74
with code and data examples if at all possible.
 
75
 
63
76
=head2 Reporting Bugs
64
77
 
65
78
report bugs to the Bioperl bug tracking system to help us keep track
208
221
 
209
222
Taken from
210
223
 
211
 
L<http://song.sourceforge.net/FT_SO_map.txt>
 
224
L<http://sequenceontology.org/resources/mapping/FT_SO.txt>
212
225
 
213
226
dgg: separated out FT_SO_map for caller changes. Update with:
214
227
 
215
 
  open(FTSO,"curl -s http://sequenceontology.org/mappings/FT_SO_map.txt|");
 
228
  open(FTSO,"curl -s http://sequenceontology.org/resources/mapping/FT_SO.txt|");
216
229
  while(<FTSO>){
217
230
    chomp; ($ft,$so,$sid,$ftdef,$sodef)= split"\t";
218
231
    print "     '$ft' => '$so',\n" if($ft && $so && $ftdef);             
256
269
     "iDNA" => "iDNA",
257
270
     "intron" => "intron",
258
271
     "mRNA" => "mRNA",
259
 
     "mat_peptide" => "mature_peptide",
 
272
     "mat_peptide" => "mature_protein_region",
 
273
     "mature_peptide" => "mature_protein_region",
260
274
#                     "misc_RNA" => "transcript",
261
275
     "misc_binding" => "binding_site",
262
276
     "misc_difference" => "sequence_difference",
294
308
      "pseudomRNA" => "pseudogenic_transcript", ## has parent = pseudogene ; dgg
295
309
      "pseudotranscript" => "pseudogenic_transcript", ## from Unflattener misc_RNA ; dgg
296
310
      "pseudoexon" => "pseudogenic_exon",
 
311
      "pseudoCDS"  => "pseudogenic_exon",
297
312
      "pseudomisc_feature" => "pseudogenic_region",
298
313
      "pseudointron" => "pseudogenic_region",
299
314