You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am under the impression that the DGN database included with the package corresponds to DisGeNet release 4. Would it be possible to upgrade it to version 5? There is now a distribution in sqlite format which may make the transition easier.
A more complex task would be to keep the "Evidence index" or "Source" annotations, in order to filter out weak/negative associations.
Thanks!
The text was updated successfully, but these errors were encountered:
Actually, I was able to regenerate them with minor changes to your script. In particular, got the file ALL variant-disease associations and changed inst/extdata/build_DGN_Anno.R as follows
x <- read.delim("all_gene_disease_associations.tsv.gz", comment.char="#",
stringsAsFactor=F, fileEncoding="ISO-8859-1")
d2n <- unique(x[, c(3, 4)]) # New columns - using names would be better
d2g <- unique(x[, c(3, 1)])
# No need to special-case non-ASCII chars any more
Still needs checking; e.g., somewhat oddly, the total number of annotations is now 17074 (before was 17381).
I am under the impression that the DGN database included with the package corresponds to DisGeNet release 4. Would it be possible to upgrade it to version 5? There is now a distribution in sqlite format which may make the transition easier.
A more complex task would be to keep the "Evidence index" or "Source" annotations, in order to filter out weak/negative associations.
Thanks!
The text was updated successfully, but these errors were encountered: