Skip to content

Commit

Permalink
v0.0.9 (#18)
Browse files Browse the repository at this point in the history
* fix: variable name

* v0.0.9

* docs: updated changelog
  • Loading branch information
ggirelli authored Nov 30, 2021
1 parent 3ca8758 commit 4ec245f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.0.9] - 2021-11-30
### Fixed
- Wrong variable name causing no chromosomes to be retained in chromosome info table.

## [0.0.8] - 2021-11-29
### Added
- Added assertion for correct chromosome start position when using --cinfo-path.
Expand Down Expand Up @@ -78,6 +82,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [0.0.1] - 2020-07-15

[Unreleased]: https://github.com/ggirelli/gpseq-img-py
[0.0.9]: https://github.com/ggirelli/gpseq-radical/releases/tag/v0.0.9
[0.0.8]: https://github.com/ggirelli/gpseq-radical/releases/tag/v0.0.8
[0.0.7]: https://github.com/ggirelli/gpseq-radical/releases/tag/v0.0.7
[0.0.6]: https://github.com/ggirelli/gpseq-radical/releases/tag/v0.0.6
Expand Down
4 changes: 2 additions & 2 deletions gpseq-radical.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# UTILITIES ====================================================================

version = "v0.0.8"
version = "v0.0.9"
if ("--version" %in% commandArgs(trailingOnly=TRUE)) {
cat(sprintf("GPSeq-RadiCal %s\n\n", version))
quit()
Expand Down Expand Up @@ -823,7 +823,7 @@ if ("universal" == args$site_domain) {
chromosomes = paste0("chr", c(1:as.numeric(chrom_tag[1]),
unlist(strsplit(chrom_tag[2], ","))))
cinfo$chrom_base = unlist(lapply(as.character(cinfo$chrom),
function(x) unlist(strsplit(x, args$chrom_base_delim, fixed=T))[1]))
function(x) unlist(strsplit(x, args$chromosome_base_delim, fixed=T))[1]))
if (args$chromosome_strict_match) {
cinfo = cinfo[chrom %in% chromosomes]
} else {
Expand Down

0 comments on commit 4ec245f

Please # to comment.