Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve plotAbundance #156

Merged
merged 38 commits into from
Nov 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ce08ae2
up
TuomasBorman Oct 8, 2024
2964549
up
TuomasBorman Oct 8, 2024
b3615b1
up
TuomasBorman Oct 8, 2024
9728046
up
TuomasBorman Oct 8, 2024
cdc71ed
up
TuomasBorman Oct 8, 2024
67cd3cf
up
TuomasBorman Oct 9, 2024
2ba9675
up
TuomasBorman Oct 9, 2024
4dc5405
Fix bioccheck
TuomasBorman Oct 9, 2024
8af0bc3
update tests
TuomasBorman Oct 9, 2024
7a3eece
up
TuomasBorman Oct 9, 2024
c950ebb
up
TuomasBorman Oct 9, 2024
711ecfa
remove warnings
TuomasBorman Oct 9, 2024
59bb54b
up
TuomasBorman Oct 9, 2024
d8943db
up
TuomasBorman Oct 9, 2024
e1655ca
up
TuomasBorman Oct 9, 2024
f44fd5c
up
TuomasBorman Oct 9, 2024
fa78ac8
Merge branch 'devel' into plotabundance_mods
TuomasBorman Oct 9, 2024
aa59828
up
TuomasBorman Oct 9, 2024
ce13f56
little bugfix
Daenarys8 Oct 14, 2024
6bff303
fix deps
Daenarys8 Oct 14, 2024
1407f0a
fix deps
Daenarys8 Oct 14, 2024
952df9b
Support variables with spaces
TuomasBorman Oct 17, 2024
07142a0
up
TuomasBorman Oct 22, 2024
c755a44
up
TuomasBorman Oct 22, 2024
6277a10
bugfix
TuomasBorman Oct 22, 2024
14ca525
Remove support for spaces.
TuomasBorman Oct 22, 2024
a0ad64e
up
TuomasBorman Oct 22, 2024
bad9567
up
TuomasBorman Oct 22, 2024
f23b312
up
TuomasBorman Oct 24, 2024
12ac4aa
add bar layout
Daenarys8 Oct 28, 2024
b814727
update
Daenarys8 Oct 28, 2024
99803e1
up
TuomasBorman Oct 29, 2024
146af91
Merge branch 'devel' into plotabundance_mods
TuomasBorman Nov 1, 2024
cdd5c07
up
TuomasBorman Nov 1, 2024
c107072
up
TuomasBorman Nov 1, 2024
7e54f6d
up
TuomasBorman Nov 1, 2024
d24689c
up
TuomasBorman Nov 1, 2024
98ba9e5
up
TuomasBorman Nov 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R/plotAbundance.R
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ setMethod("plotAbundance", signature = c("SummarizedExperiment"), function(
# agglomeration and transformation. The outut is a single tibble with all the
# whole dataset for plotting.
.get_abundance_data <- function(
x, assay.type, layout, group = rank, rank = NULL,
x, assay.type, layout = "bar", group = rank, rank = NULL,
Daenarys8 marked this conversation as resolved.
Show resolved Hide resolved
as.relative = use_relative, use_relative = FALSE, ...){
# Input check
if( !(is.null(group) || (
Expand Down
Loading