Skip to content

Commit

Permalink
version 1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly-ST-HRI committed Nov 8, 2023
1 parent d46d9f9 commit b2f1794
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Contact:
Contact the software author to discuss the software, report bugs or suggest enhancements at:
https://github.com/StevenWingett/HiCUP/issues

HiCUP+ (v1.0.2) maintainer: S. Thomas Kelly
HiCUP+ (v1.0.3) maintainer: S. Thomas Kelly

Contact:
simonthomas.kelly [at] hugp [dot] com
Expand Down Expand Up @@ -116,7 +116,7 @@ BibTeX version:
The software release can be cited as follows:

> Kelly, S. T. & Yuhara, S. (2022) HiCUP+: a fast open-source pipeline for accurately processing large scale Hi-C sequence data.
> Software release v1.0.2 URL: [https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)
> Software release v1.0.3 URL: [https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)
BibTex version:

Expand All @@ -125,7 +125,7 @@ BibTex version:
author = {Kelly, S. Thomas and Yuhara, Satoshi},
title = {{H}i{C}{U}{P}-{P}lus: a fast open-source pipeline for accurately processing large scale {H}i-{C} sequence data}},
year = {2022},
note = {Software release version v1.0.2},
note = {Software release version v1.0.3},
url = {[https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)},
}
```
Expand Down
6 changes: 3 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Contact:
Contact the software author to discuss the software, report bugs or suggest enhancements at:
https://github.com/StevenWingett/HiCUP/issues

HiCUP+ (v1.0.2) maintainer: S. Thomas Kelly
HiCUP+ (v1.0.3) maintainer: S. Thomas Kelly

Contact:
simonthomas.kelly [at] hugp [dot] com
Expand Down Expand Up @@ -116,7 +116,7 @@ BibTeX version:
The software release can be cited as follows:

> Kelly, S. T. & Yuhara, S. (2022) HiCUP+: a fast open-source pipeline for accurately processing large scale Hi-C sequence data.
> Software release v1.0.2 URL: [https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)
> Software release v1.0.3 URL: [https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)

BibTex version:

Expand All @@ -125,7 +125,7 @@ BibTex version:
author = {Kelly, S. Thomas and Yuhara, Satoshi},
title = {{H}i{C}{U}{P}-{P}lus: a fast open-source pipeline for accurately processing large scale {H}i-{C} sequence data}},
year = {2022},
note = {Software release version v1.0.2},
note = {Software release version v1.0.3},
url = {[https://github.com/hugp-ri/hicup-plus/](https://github.com/hugp-ri/hicup-plus/)},
}
```
Expand Down
12 changes: 12 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
RELEASE NOTES FOR HICUP-Plus v1.0.3 (8 NOVEMBER 2023)

HiCUP+ v1.0.3 is a mnior update incorporating the changes described below:

- adds support for the STAR aligner

- updated logs for reporting results

- updated documentation to describe supported aligners and Docker images

-------------------------------------------------


RELEASE NOTES FOR HICUP-Plus v1.0.2 (2 NOVEMBER 2022)

Expand Down
14 changes: 7 additions & 7 deletions hicup_mapper
Original file line number Diff line number Diff line change
Expand Up @@ -662,17 +662,17 @@ sub map_file {
$reads_processed += $too_short_to_map unless $config{dragen};
}

#if ($reads_processed) {
# $percent_too_short_to_map = sprintf( "%.1f", ( $too_short_to_map / $reads_processed * 100 ) );
# $percent_unique = sprintf( "%.1f", ( $unique_map / $reads_processed * 100 ) );
# $percent_unmapped = sprintf( "%.1f", ( $unmapped / $reads_processed * 100 ) );
# $percent_multi = sprintf( "%.1f", ( $multi_mapped / $reads_processed * 100 ) );
#} else {
if ($reads_processed) {
$percent_too_short_to_map = sprintf( "%.1f", ( $too_short_to_map / $reads_processed * 100 ) );
$percent_unique = sprintf( "%.1f", ( $unique_map / $reads_processed * 100 ) );
$percent_unmapped = sprintf( "%.1f", ( $unmapped / $reads_processed * 100 ) );
$percent_multi = sprintf( "%.1f", ( $multi_mapped / $reads_processed * 100 ) );
} else {
$percent_too_short_to_map = 'N/A';
$percent_unique = 'N/A';
$percent_unmapped = 'N/A';
$percent_multi = 'N/A';
#}
}

# reporting timing results
my $end2 = Time::HiRes::tv_interval($start_aligner);
Expand Down
2 changes: 1 addition & 1 deletion hicup_module.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 get_csome_position);

our $VERSION = "1.0.2";
our $VERSION = "1.0.3";

use Data::Dumper;
use strict;
Expand Down

0 comments on commit b2f1794

Please sign in to comment.