Skip to content

Commit

Permalink
Merge pull request #1 from modupeore/modupe
Browse files Browse the repository at this point in the history
changed folder naming scheme
  • Loading branch information
modupeore authored Feb 26, 2020
2 parents fe96240 + e547c29 commit 6c257eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions VariantAnalysisPipeline.pl
Original file line number Diff line number Diff line change
Expand Up @@ -302,16 +302,16 @@ sub INPUTFILES { #sorting the input files
foreach (@content) {
my $file = basename($_);
if($file =~ /.+[_\.][Rr][12].+/) {
$file =~ /(.+)_.*[_\.][Rr][12].+/; $value = $1;
$file =~ /(.+)[_\.][Rr][12].+/; $value = $1;
}
elsif($file =~ /.+[_\.][12].+/) {
$file =~ /(.+)_.*[_\.][12].+/; $value = $1;
$file =~ /(.+)[_\.][12].+/; $value = $1;
}
elsif($file =~ /.+[_\.]pe[12]/) {
$file =~ /(.+)_.*[_\.]pe[12].+/; $value = $1;
$file =~ /(.+)[_\.]pe[12].+/; $value = $1;
}
elsif($file =~ /.+[_\.]PE[12]/) {
$file =~ /(.+)_.*[_\.]PE[12].+/; $value = $1;
$file =~ /(.+)[_\.]PE[12].+/; $value = $1;
}
else { $value = $1; }

Expand Down

0 comments on commit 6c257eb

Please # to comment.