Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
retaj committed Dec 4, 2018
2 parents 15ca013 + 4415370 commit 7ff2b63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
ciRcus 0.1.7
------------
IMPROVEMENTS AND BUG FIXES

* 18-column find_circ output (wherever it comes from) supported

ciRcus 0.1.6
------------
NEW FEATURES
Expand Down
2 changes: 1 addition & 1 deletion R/readData.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ readCircs <- function(file, subs = "all", qualfilter = TRUE, keepCols = 1:6,
)

# try to figure out what tool the data are coming from
if (ncol(DT) == 19 & names(DT)[1] == "# chrom") {
if (ncol(DT) %in% 18:19 & names(DT)[1] == "# chrom") {
# read find_circ
setnames(DT, "# chrom", "chrom")
DT <- DT[!grepl("#", DT$chrom)]
Expand Down

0 comments on commit 7ff2b63

Please sign in to comment.