-
Notifications
You must be signed in to change notification settings - Fork 13
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
587 get seed #607
587 get seed #607
Conversation
@@ -90,8 +90,6 @@ Collate: | |||
'table-formula.R' | |||
'user-defined-pk-parameter.R' | |||
'utilities-container.R' | |||
'utilities-data-import-configuration.R' | |||
'utilities-data-importer-configuration.R' |
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.
@PavelBal I am not sure what these files were about? They were empty or containing an empty function
population <- Population$new(netPopulation) | ||
|
||
individualCharacteristics <- NULL | ||
|
||
# NOTE THIS IS A WORKAROUND UNTIL THE CODE IN PKSIM IS UPDATED |
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.
Also fixed this in PKSim
if (len == 0) { | ||
rep(NA, length(dataSet$xValues)) | ||
} else if (len == 1) { | ||
columForDataSet <- function(dataSet) { |
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.
just running styler here
@@ -1,6 +1,8 @@ | |||
context("New DataImporterConfiguration") | |||
|
|||
test_that("it can create a new data importer configuration", { | |||
skip_on_os("linux") # TODO enable again as soon as npoi works under linux |
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.
this was missing everywhere too
@@ -1,6 +1,8 @@ | |||
context("New DataImporterConfiguration") | |||
|
|||
test_that("it can create a new data importer configuration", { | |||
skip_on_os("linux") # TODO enable again as soon as npoi works under linux | |||
|
|||
importerConfiguration <- DataImporterConfiguration$new() |
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.
I honestly do not like the fact that so much happens on new. A constructor should be very fast and NEVER crash.
I would like to see a method on that object for importing or creating. Right now this is all implicit and it is not what I would expect
Ah ok, the dlls must be updated for the build to success. |
No description provided.