-
Notifications
You must be signed in to change notification settings - Fork 5
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
Deprecating groupCol and blockCol #62
Closed
Closed
Changes from 3 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
36b2cd1
changed all mentions of group in folder R/;example: lgroupf etc to cl…
asyakhl 2e42c3e
changed all mentions of group in folder inst/scripts/ to class and sa…
asyakhl 2078503
changed all mentions of group in folder tests/ to class and same was …
asyakhl dd3681c
changed all mentions of group in folder vignettes/ to class and same …
asyakhl be5d289
changed all mentions of group in DESCRIPTION file to class
asyakhl 75e86a0
three man files updated with class to replace group and subclass to r…
asyakhl 55ea930
formally deprecating groupCol and blockCol arguments
asyakhl e92e660
updating attributes to match updated arguments
asyakhl 6f155b6
fixing typo
asyakhl bfa65a7
adding warnings for deprecated args groupCol and blockCol
asyakhl 22a2a2d
updating attributes to match updated arguments
asyakhl 16bff41
resolve merge conflict for DESCRIPTION
asyakhl 60234f9
resolve merge conflict for DESCRIPTION
asyakhl 40a8ee2
renaming groups to classes
asyakhl 0e3a84d
resolving merge conflict for lefserPlotFeat.R
asyakhl 90c9d2d
resolving merge conflict for inst/scripts/histogramPlot.R
asyakhl 02e5027
merged devel into deprecation and resolved all merge conflicts
asyakhl 483edeb
renaming refGrp to refClass
asyakhl f9c07d5
renaming group and block to class and subclass for tests/testthat/tes…
asyakhl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -231,7 +231,9 @@ lefser <- | |
checkAbundances = TRUE, | ||
method = "none", | ||
..., | ||
expr | ||
expr, | ||
groupCol = "GROUP", | ||
blockCol = NULL | ||
) { | ||
if (!missing(expr)) { | ||
.Deprecated( | ||
|
@@ -325,8 +327,8 @@ lefser <- | |
attr(res_scores, "kth") <- kruskal.threshold | ||
attr(res_scores, "wth") <- wilcox.threshold | ||
attr(res_scores, "ldath") <- lda.threshold | ||
attr(res_scores, "grp") <- classCol | ||
attr(res_scores, "blk") <- subclassCol | ||
attr(res_scores, "class") <- classCol | ||
attr(res_scores, "subclass") <- subclassCol | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @asyakhl Were these updated in |
||
attr(res_scores, "method") <- method | ||
attr(res_scores, "lclassf") <- lclassf[1] | ||
res_scores | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@asyakhl You should
.Deprecated
the old arguments asexpr
.