Closed tram-nguyen-n closed 2 months ago
Thanks @tram-nguyen-n - a couple of notes on the README:
https://proteingym.org
(note the missing https://
)Some more:
A couple of notes on the DESCRIPTION
file:
Title
: Programmatic access to ProteinGym datasets in R/BioconductorVersion
: change to 0.99.0
to comply with Bioc package versioning schemeDescription
: match with description in the READMEAdd installation instructions to README (for the moment only describe how to install the package from github) ...
There is currently no vignette. Bioconductor packages are required to have a vignette.
Functions names are supposed to start lower case according to Bioconductor coding style. Consider renaming:
Function name mismatch in DMS_substitutions.R:
DMS_substitutions
currently returns a list
of tibble
s. AlphaMissense_scores
returns an ordinary data.frame
. Is there a strong argument for returning tibble and thus requiring the extra dependency? My preference would be for DMS_substitutions
to return a list
of ordinary data.frame
s.
Thanks for the edits @lgeistlinger! Incorporated them all.
For this comment:
Functions names are supposed to start lower case according to Bioconductor coding style. Consider renaming:
- AlphaMissense_scores -> am_scores
- DMS_substitutions -> dms_scores
I kept it dms_substitutions
to distinguish it from the DMS indel scores that are provided in ProteinGym too.
I can overwrite the list
object on Azure to be data.frames
instead of tibbles
after Aaron and Pascal's edits.
changes incorporated
Hi @lgeistlinger would you mind giving the package a first-look and provide me with any edits you may have please?