-
Notifications
You must be signed in to change notification settings - Fork 15
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
95 update mc6_mthds with fval and fval_unit drops #102
Conversation
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 looks good, but dropped column caused error with tcplLoadData: https://github.com/USEPA/CompTox-ToxCast-tcpl/blob/main/R/tcplLoadData.R#L690. Individual columns are selected opposed to whole table
mc6 <- tcplPrepOtpt(tcplLoadData(lvl=6, fld='m4id', val=mc5$m4id, type='mc'))
Error: Unknown column 'fval' in 'field list' [1054]
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.
Successfully pipelined data into lvl6 in 'invitrodb_test' and loaded the mc6 data with tcplLoadData().
Rebase main into issue branch for removing fval columns
Merged new mc6 method in main and then rebased this branch so I could make the fval changes to the new method. The new method is now updated like the others |
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.
Looks good!
Dropped fval and fval_unit columns from invitrodb.mc6 and logged changes in schema_changes.
Updated
m6_mthds.R
methods to not include those columns. Tested withmc(ae=2)
. Closes #95.