-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed bug causing output files to not strictly adhere to SAM/BAM form…
…at. Prepared for next release.
- Loading branch information
Steven Wingett
committed
Jan 15, 2019
1 parent
6a28cca
commit 12431fc
Showing
15 changed files
with
32 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2016, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ use hicup_module; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2016, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ use hicup_module; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2016, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ use hicup_module; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2016, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
@@ -331,7 +331,10 @@ if ( $config{zip} ) { | |
#Map and pair sequences | ||
my $ligation = "\@PG\tID:HiCUP Truncater\tVN:" . $hicup_module::VERSION; #Create the hidden ligation flag to send to HiCUP mapper to print the hicup_truncation settings to the output file | ||
if ( $config{re1} ) { | ||
$ligation = $ligation . "\tDS:\"" . "$config{re1}\""; | ||
#We cannot have a ":" in the SAM header at this point, so remove it | ||
my $colonless_re1 = $config{re1}; | ||
$colonless_re1 =~ s/://g; | ||
$ligation = $ligation . "\tDS:\"" . "$colonless_re1\""; | ||
} else { | ||
$ligation = $ligation . "\tDS\"" . "Ligation junction sequences $config{sequence}\""; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ our @EXPORT = qw(VERSION hasval deduplicate_array checkR process_config check_fi | |
our @EXPORT_OK = qw(hashVal outdirFileNamer check_no_duplicate_filename check_filenames_ok | ||
checkAligner checkAlignerIndices newopen quality_checker determineAlignerFormat); | ||
|
||
our $VERSION = "0.7.1"; | ||
our $VERSION = "0.7.2"; | ||
|
||
use Data::Dumper; | ||
use strict; | ||
|
@@ -19,7 +19,7 @@ use lib $Bin; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ use Data::Dumper; | |
|
||
################################################################################### | ||
################################################################################### | ||
##This file is Copyright (C) 2018, Steven Wingett ([email protected])## | ||
##This file is Copyright (C) 2019, Steven Wingett ([email protected])## | ||
## ## | ||
## ## | ||
##This file is part of HiCUP. ## | ||
|