Skip to content

Commit

Permalink
fix the wrong strand on subfeatures
Browse files Browse the repository at this point in the history
  • Loading branch information
sachalau authored Mar 22, 2019
1 parent d1ea415 commit 4a39df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ucsc-to-json.pl
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ sub makeSubfeatures {
$thick_start = int($thick_start);
$thick_end = int($thick_end);

my $parent_strand = $strand ? ($strand eq '+' ? 1 : -1) : 0;
my $parent_strand = $strand;

if (defined($block_count) && ($block_count > 0)) {
if (($block_count != ($#$length_list + 1))
Expand Down

0 comments on commit 4a39df9

Please sign in to comment.