We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Situation:
first decide which samples go in each pool. Then split the pool in two for the 2 timepoints of the sample.
Or simply applying the same batch to the same ouptut multiple times:
data(survey, package = "MASS") columns <- c("Sex", "Age", "Smoke") index <- design(pheno = survey[, columns], size_subset = 70, iterations = 10) batches <- inspect(index, survey[, columns]) index2 <- design(pheno = batches, size_subset = 70, iterations = 10) batches2 <- inspect(index2, batches) View(batches2) # Error
The text was updated successfully, but these errors were encountered:
736e1cd
Fixed by adding a warning, inspect and follow_up already had an argument to name the new column.
inspect
follow_up
Not sure if a sequential design should be covered considered
Sorry, something went wrong.
No branches or pull requests
Situation:
first decide which samples go in each pool.
Then split the pool in two for the 2 timepoints of the sample.
Or simply applying the same batch to the same ouptut multiple times:
The text was updated successfully, but these errors were encountered: