bugfix: import all taxonomy IDs as integer
This commit is contained in:
@@ -212,7 +212,7 @@ dbAddProtein <- function(db, jsonDF) {
|
||||
name = jsonDF$name[i],
|
||||
RefSeqID = jsonDF$RefSeqID[i],
|
||||
UniProtID = jsonDF$UniProtID[i],
|
||||
taxonomyID = jsonDF$taxonomyID[i],
|
||||
taxonomyID = as.integer(jsonDF$taxonomyID[i]),
|
||||
sequence = dbSanitizeSequence(jsonDF$sequence[i]))
|
||||
db$protein <- rbind(db$protein, x)
|
||||
}
|
||||
|
Reference in New Issue
Block a user