Skip to content

Commit

Permalink
Merge branch 'feature'
Browse files Browse the repository at this point in the history
  • Loading branch information
brainfood committed Mar 8, 2018
2 parents 6c624bb + df6e1cd commit 7709688
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions norm_scripts/get_master_list_of_exons.pl
Original file line number Diff line number Diff line change
Expand Up @@ -359,11 +359,11 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}


Expand Down
4 changes: 2 additions & 2 deletions norm_scripts/get_master_list_of_genes.pl
Original file line number Diff line number Diff line change
Expand Up @@ -368,10 +368,10 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}

4 changes: 2 additions & 2 deletions norm_scripts/get_master_list_of_intergenic_regions.pl
Original file line number Diff line number Diff line change
Expand Up @@ -621,11 +621,11 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}

sub uniq {
Expand Down
4 changes: 2 additions & 2 deletions norm_scripts/get_master_list_of_introns.pl
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,9 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}
4 changes: 2 additions & 2 deletions norm_scripts/quantify_exons_introns.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1646,11 +1646,11 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}


Expand Down
4 changes: 2 additions & 2 deletions norm_scripts/quantify_intergenic_regions.pl
Original file line number Diff line number Diff line change
Expand Up @@ -605,11 +605,11 @@ ($)
}
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}


Expand Down
4 changes: 2 additions & 2 deletions norm_scripts/quantify_introns.pl
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,11 @@ ($)

sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}


Expand Down
4 changes: 2 additions & 2 deletions norm_scripts/rum-2.0.5_05/lib/RUM/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ Return a true value if N is a roman numeral, false otherwise.
=cut
sub isroman($) {
my $arg = shift;
return $arg ne '' and
return ($arg ne '' and
$arg =~ /^(?: M{0,3})
(?: D?C{0,3} | C[DM])
(?: L?X{0,3} | X[LC])
(?: V?I{0,3} | I[VX])$/ix;
(?: V?I{0,3} | I[VX])$/ix);
}

=item arabic(N)
Expand Down
2 changes: 1 addition & 1 deletion norm_scripts/runall_normalization.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2692,7 +2692,7 @@
print LOG "Check the following before proceeding:\n\n";

if ($GNORM eq "true"){
$exp_num_reads = `grep -A 3 Expected $s_dir/GENE/expected_num_reads_gnorm.txt"; | grep -A 3 estimate`;
$exp_num_reads = `grep -A 3 Expected $s_dir/GENE/expected_num_reads_gnorm.txt" | grep -A 3 estimate`;
chomp($exp_num_reads);
print LOG "\n[Gene Normalization]\n";
print LOG "(1) Number of reads\n";
Expand Down

0 comments on commit 7709688

Please sign in to comment.