Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions find_peaks
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ sub load_gff {

next unless $start;

$score = 0 if $score eq "NA";
$score = 0 if $score eq "NA" or $score eq "0.0";

push (@$in_ref, [$chr, $start, $end, $score]);
}
Expand All @@ -436,7 +436,6 @@ sub find_quants {
foreach my $l (@$in_ref) {
my ($chr, $start, $end, $score) = @$l;
next unless $score;
$score = 0 if $score eq "NA";
$total_coverage += $end-$start;
push @frags, $score;
}
Expand Down