Skip to content

Commit

Permalink
Merge pull request dieterich-lab#37 from dieterich-lab/r-dev
Browse files Browse the repository at this point in the history
R dev
  • Loading branch information
alexey0308 committed Sep 7, 2017
2 parents 36262da + 69502a6 commit c9e9509
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/circtools/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: circtools
Title: Design and analysis of circ-RNA-seq experiments
Version: 0.0.0.9000
Version: 0.0.0.9001
Authors@R: person("Alexey", "Uvarovskii", email = "alexey.mipt@gmail.com", role = c("aut", "cre"))
Description: Visualisation tools for circular RNAs.
License: GPL-3
Expand Down
3 changes: 3 additions & 0 deletions R/circtools/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# circtools 0.0.0.9000


# circtools 0.0.0.9001

- fix count plot


3 changes: 2 additions & 1 deletion R/circtools/R/plot-segments.R
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ plotTranscripts <- function(exons,
margins(left = 1,
bottom = numMarginLines,
right = 0.2)
counts <- counts[match(counts$id, levels(factor(exons$tx_id))),]
counts <- counts[counts$id %in% levels(factor(exons$tx_id)),]
counts$id <- match(counts$id, levels(factor(exons$tx_id)))
plotCounts(id = counts$id,
count = counts$count,
ylim = isoformsYLim)
Expand Down

0 comments on commit c9e9509

Please sign in to comment.