Skip to content

Commit

Permalink
Merge pull request #42 from finddx/sample-classification
Browse files Browse the repository at this point in the history
version 0.0.1.0
  • Loading branch information
m-mburu authored Mar 7, 2024
2 parents 762c962 + 0b90479 commit 70f0b8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: findBiobankR
Title: Find Biobank R Package
Version: 0.0.0.9000
Version: 0.0.1.0
Authors@R:
person("Moses", "Mburu", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-7281-583X"))
Expand Down
2 changes: 1 addition & 1 deletion R/select_patients_per_group.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ select_patients_per_group <- function(df,
}
setorderv(df1,cols = sort_cols, order = -1L)
if(shuffle){
df1 = select_and_shuffle_dt(df1, numeric_var =number_of_aliquots_col)
df1 = select_and_shuffle_dt(df1, numeric_var =number_of_aliquots_col, ...)
}
df1 = df1[1:no_i]
list_selected[[i]] = df1
Expand Down
2 changes: 1 addition & 1 deletion dev/sample_selections.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ select_patients_per_group <- function(df,
}
setorderv(df1,cols = sort_cols, order = -1L)
if(shuffle){
df1 = select_and_shuffle_dt(df1, numeric_var =number_of_aliquots_col)
df1 = select_and_shuffle_dt(df1, numeric_var =number_of_aliquots_col, ...)
}
df1 = df1[1:no_i]
list_selected[[i]] = df1
Expand Down

0 comments on commit 70f0b8c

Please sign in to comment.