-
Notifications
You must be signed in to change notification settings - Fork 17
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
BASiCS_PlotVG not working in Chain data from #220
Comments
The error is intended and informative. If you create a chain with ChainSC <- BASiCS_MCMC(Data = DataExample,
N = 1000, Thin = 10, Burn = 500,
PrintProgress = FALSE, Regression = FALSE) This means that residual overdispersion parameters ("epsilon") are not estimated. These are a measure of variability above or below that expected based on mean expression alone. Alternatively you could create a chain using the example you posted and supply ChainSC <- BASiCS_MCMC(Data = DataExample,
N = 1000, Thin = 10, Burn = 500,
PrintProgress = FALSE, Regression = TRUE)
HVG <- BASiCS_DetectHVG(ChainSC, PercentileThreshold=0.1) |
Thank you for the prompt reply! Working now. |
No worries! Thanks for flagging it - probably a good sign that the documentation needs to be more explicit. |
Dear BASiCS dev,
The function
BASiCS_PlotVG
seems to work with the default object provided in the tutorial, which seems to have been created in version 1.1.20 according to its log. However, for newly created objects in R 4.0 the same throws an error, which seems to ber related to the new version of Chain.I was thinking in using this function in an older version of BASiCS, e.g.
BASiCS_1.8.1
, but the function seems not to be available in this one.Can the ChainSC be confirmed to work with the latest BASiCS version and then plotted? If this is not possible, what is the latest version where both MCMC + plotting steps work together?
I hope not to be wrong in the described behavior. If more clarifications required happy to send scripts and test cases.
Cheers,
Ignacio
The text was updated successfully, but these errors were encountered: