[BioRuby] selenoproteins
Michael Han
m.han at gsf.de
Tue Jun 15 12:11:48 EDT 2004
Hi everyone,
i am working on fine-tuning an annotation pipeline with ruby.
As selenoproteins seem not to be supported by BioRuby, they break my
assertions (and most gene predictions).
Therefore i would like to add a codon-table for selenoproteins (TGA=>U).
Also i would like to ask if there are people working on support for
BLAT / BED / PSL / moving tests into separate Test::Unit classes.
greetings,
Michael Han
---------------------
Institute for Bioinformatics
National Research Center for Environment and Health
Munich - Germany
----------------------
i am thinking of something like adding to bio/data/codontable.rb
------------------------ 8< ---------------
# codon table 99 - selenoproteins (Eukaryote)
99 => {
'ttt' => 'F', 'tct' => 'S', 'tat' => 'Y', 'tgt' => 'C',
'ttc' => 'F', 'tcc' => 'S', 'tac' => 'Y', 'tgc' => 'C',
'tta' => 'L', 'tca' => 'S', 'taa' => '*', 'tga' => 'U',
'ttg' => 'L', 'tcg' => 'S', 'tag' => '*', 'tgg' => 'W',
'ctt' => 'L', 'cct' => 'P', 'cat' => 'H', 'cgt' => 'R',
'ctc' => 'L', 'ccc' => 'P', 'cac' => 'H', 'cgc' => 'R',
'cta' => 'L', 'cca' => 'P', 'caa' => 'Q', 'cga' => 'R',
'ctg' => 'L', 'ccg' => 'P', 'cag' => 'Q', 'cgg' => 'R',
'att' => 'I', 'act' => 'T', 'aat' => 'N', 'agt' => 'S',
'atc' => 'I', 'acc' => 'T', 'aac' => 'N', 'agc' => 'S',
'ata' => 'I', 'aca' => 'T', 'aaa' => 'K', 'aga' => 'R',
'atg' => 'M', 'acg' => 'T', 'aag' => 'K', 'agg' => 'R',
'gtt' => 'V', 'gct' => 'A', 'gat' => 'D', 'ggt' => 'G',
'gtc' => 'V', 'gcc' => 'A', 'gac' => 'D', 'ggc' => 'G',
'gta' => 'V', 'gca' => 'A', 'gaa' => 'E', 'gga' => 'G',
'gtg' => 'V', 'gcg' => 'A', 'gag' => 'E', 'ggg' => 'G',
},
----------------------- 8< -------------------------
More information about the BioRuby
mailing list