When I am trying example code
tbadb = dbLoad("https://gitlab.com/immunomind/immunarch/raw/dev-0.5.0/private/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV") tbadb
it firstly returns an error, same as
After changing the website to the address of local data file,
tbadb = dbLoad("/path/to/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV")
Error in if (!is.na(.chain)) { : the condition has length > 1
Another error returns, this time indicating the little problem in annotation.R line 94, that
!is.na(.species) returns multiple "TRUE" when a vector is given to .chain.
🐛 Bug
When I am trying example code
tbadb = dbLoad("https://gitlab.com/immunomind/immunarch/raw/dev-0.5.0/private/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV") tbadb
it firstly returns an error, same asAfter changing the website to the address of local data file,
tbadb = dbLoad("/path/to/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV")
Another error returns, this time indicating the little problem in annotation.R line 94, that
!is.na(.species)
returns multiple "TRUE" when a vector is given to.chain
.To Reproduce
Steps to reproduce the behavior:
tbadb = dbLoad("https://gitlab.com/immunomind/immunarch/raw/dev-0.5.0/private/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV") tbadb
ortbadb = dbLoad("/path/to/TBAdb.xlsx", "tbadb", .species = "Homo Sapiens", .chain = c("TRB", "TRA-TRB"), .pathology = "CMV")
Expected behavior
Additional context