Skip to content
Snippets Groups Projects
Commit 1521709b authored by Graham McVicker's avatar Graham McVicker
Browse files

merge change from branch

parent 38299f79
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,6 @@ sub to_FTHelper {
foreach my $exon (@{$trans->get_all_translateable_Exons()}) {
$join .= ',' if($join); #append a comma to the last coord set
if($exon->strand() == 1) {
$join .= $exon->start()."..".$exon->end();
} else {
......@@ -160,7 +159,7 @@ sub to_FTHelper {
}
push(@out, $ft);
foreach my $exon (@{$trans->get_all_Exons()}) {
foreach my $exon (@{$trans->get_all_translateable_Exons()}) {
my $ft = Bio::SeqIO::FTHelper->new();
if( $exon->strand() == 1 ) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment