Skip to content

Commit

Permalink
remove allele string
Browse files Browse the repository at this point in the history
  • Loading branch information
ima23 committed Nov 19, 2018
1 parent 80dddc1 commit 771b095
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions POSTGAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ sub feature_types {
sub get_header_info {
my $self = shift;

my $header = 'POSTGAP data for variation - phenotype association. Format: Allele';
$header .= $char_sep.join($char_sep, @fields_order );
my $header = 'POSTGAP data for variation - phenotype association. Format: ';
$header .= join($char_sep, @fields_order );

return {
POSTGAP => $header,
Expand Down Expand Up @@ -213,7 +213,7 @@ sub run {
next if defined $result_uniq{$record_line};
$result_uniq{$record_line} = 1;

push(@result_str, $vf->allele_string.$char_sep.join($char_sep, @tmp_return{@fields_order}));
push(@result_str, join($char_sep, @tmp_return{@fields_order}));
push(@result, \%tmp_return);
}

Expand Down

0 comments on commit 771b095

Please sign in to comment.