Created
September 9, 2011 01:33
-
-
Save coela/1205275 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use G; | |
use 5.12.4; | |
my $gb = load('ecoli'); | |
$gb->{$_}->{product} = '' for $gb->cds(); | |
for ($gb->cds()){ | |
my $l = length $gb->{$_}->{translation}; | |
$gb->{$_}->{product} = 'ribosomal fucking protein' if $l >=500; | |
} | |
say Dumper w_value ($gb); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment