Skip to content

Commit

Permalink
create lib directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kaichop committed Oct 15, 2015
1 parent b34a3a6 commit f5828e2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions detect_cnv.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3035,6 +3035,8 @@ sub calCC {
my (@newarray1, @newarray2);
@$array1 == @$array2 or print STDERR "WARNING: Unequal dimensions of arrays: ${\(scalar @$array1)} vs ${\(scalar @$array2)}\n";
for my $i (0 .. @$array1-1) {
defined $array1->[$i] or next;
defined $array2->[$i] or next;
$array1->[$i] eq 'NA' and next;
$array2->[$i] eq 'NA' and next;
push @newarray1, $array1->[$i];
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f5828e2

Please sign in to comment.