-
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.
* Initialise plotRDA * up * up * up * up * Match dot and ellipse colours * Add arguments for ellipse, vector and text aesthetics * plotRDA -> Add option to turn off text repel and catch all ggrepel args * up * Catch all params for plotReducedDim * up * Update plotRDA vignettes * Make alias plotCCA for plotRDA * Use retrieveCellInfo in plotRDA * Remove remnants of conflicts * Implement method of plotRDA for rda/cca object and extend vignettes * Streamline plotRDA code * Catch all args in setGeneric and setMethod of plotRDA * Minor fixes * Update plotRDA docs and check input params * Fix build for plotRDA * Update docs on plotRDA * Import SingleCellExperiment in DESCRIPTION * Fix DESCRIPTION * Update plotRDA examples * Fix plotRDA docs * Debug and add signif/variance args to plotRDA * Implement add.ellipse arg in plotRDA * Update plotRDA vignettes * Bump version and add news * Initiate tests for plotRDA and correct version * Implement unit tests for plotRDA * up --------- Co-authored-by: Giulio Benedetti <[email protected]>
- Loading branch information
1 parent
b811da5
commit aaf0941
Showing
8 changed files
with
906 additions
and
4 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 |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
.RData | ||
inst/extras/ | ||
^doc$ | ||
^Meta$ |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ inst/doc | |
docs | ||
.Rhistory | ||
*.RData | ||
.DS_Store | ||
/doc/ | ||
/Meta/ |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: miaViz | ||
Title: Microbiome Analysis Plotting and Visualization | ||
Version: 1.9.2 | ||
Version: 1.9.3 | ||
Authors@R: | ||
c(person(given = "Tuomas", family = "Borman", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
|
@@ -11,7 +11,10 @@ Authors@R: | |
person(given = "Leo", family = "Lahti", role = c("aut"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-5537-637X")), | ||
person(given = "Basil", family = "Courbayre", role = c("ctb")) | ||
person(given = "Basil", family = "Courbayre", role = c("ctb")), | ||
person(given = "Giulio", family = "Benedetti", role = c("ctb"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-8732-7692")) | ||
) | ||
Description: The miaViz package implements functions to visualize | ||
TreeSummarizedExperiment objects especially in the context of microbiome | ||
|
@@ -46,7 +49,9 @@ Imports: | |
tidyr, | ||
dplyr, | ||
ape, | ||
DirichletMultinomial | ||
DirichletMultinomial, | ||
ggrepel, | ||
SingleCellExperiment | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
|
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
Oops, something went wrong.