Skip to content

Commit

Permalink
Fixed min/max integer for sed sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Drucker committed Sep 7, 2023
1 parent d92d30a commit 1757aa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/rf_modeling.R
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ rf_modeling <- function( msnset, features, response, pred.cls, K=NULL, sel.feat=
}))
})))
set.seed(seed)
seed_seq <- sample(-1e15:1e15, size = K)
seed_seq <- sample(-.Machine$integer.max:.Machine$integer.max, size = K)
invisible(clusterExport(multiproc_cl,
c("dSet","cv_idx","features",
"response", "seed_seq"),
Expand Down
2 changes: 1 addition & 1 deletion man/plot_PeCorA.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1757aa3

Please sign in to comment.