Skip to content

Commit 1e598ae

Browse files
committed
Merge branch 'release-0.8.5c-beta'
2 parents b4ce86d + 5913da3 commit 1e598ae

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

norm_scripts/get_chr_stats.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
$file = "$LOC/$line/EIJ/Unique/$line.filtered_u.numchr_count.txt";
117117
}
118118
foreach my $key (sort {&cmpChrs($a,$b)} keys %CHR){
119-
my $find = `grep -w '$key' $file`;
119+
my $find = `grep -w '^$key' $file`;
120120
my $count = "0.00";
121121
if ($find !~ /^$/){
122122
my @f = split(/\t/,$find);

norm_scripts/run_normalization

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ OPTIONS:
7070

7171
for(my $i=0; $i<@ARGV; $i++) {
7272
if ($ARGV[$i] eq '-v'){
73-
die "\nPORT v0.8.5b-beta\n\n";
73+
die "\nPORT v0.8.5c-beta\n\n";
7474
}
7575
}
7676
for(my $i=0; $i<@ARGV; $i++) {

norm_scripts/runall_normalization.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
}
613613
}
614614
open(LOG, ">>$logfile");
615-
print LOG "\nPORT v0.8.5b-beta\n";
615+
print LOG "\nPORT v0.8.5c-beta\n";
616616
my $default_input = $input;
617617
#$default_input = `cat $shdir/runall_normalization.sh`;
618618
$default_input =~ s/perl\ //g;
@@ -2692,12 +2692,12 @@
26922692
print LOG "Check the following before proceeding:\n\n";
26932693

26942694
if ($GNORM eq "true"){
2695-
$exp_num_reads = `grep -A 3 Expected $s_dir/GENE/expected_num_reads_gnorm.txt" | grep -A 3 estimate`;
2695+
$exp_num_reads = `grep -A 3 Expected $s_dir/GENE/expected_num_reads_gnorm.txt | grep -A 3 estimate`;
26962696
chomp($exp_num_reads);
26972697
print LOG "\n[Gene Normalization]\n";
26982698
print LOG "(1) Number of reads\n";
26992699
print LOG "$exp_num_reads\n";
2700-
print LOG "See \"$exp_file\" \nand modify the list of sample directories (\"$sample_dir\") accordingly to get more reads.\n\n";
2700+
print LOG "See \"$s_dir/GENE/expected_num_reads_gnorm.txt\" \nand modify the list of sample directories (\"$sample_dir\") accordingly to get more reads.\n\n";
27012701
print LOG "(2) High Expressers\n";
27022702
my @highfiles = glob("$s_dir/GENE/percent_high_expresser_gene*txt");
27032703
my $highcnt = 0;

template_v0.8.5.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# config file for [PORT - RNA-Seq Normalization & Quantification] (v0.8.5b-beta)
2+
# config file for [PORT - RNA-Seq Normalization & Quantification] (v0.8.5c-beta)
33

44
######################################################################################################################
55

0 commit comments

Comments
 (0)