Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion R/load.homologs.r
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ load.homologs <- function(){
hom_vert = hom_vert[-1,]

# The table is badly formatted, so drop rubbish
hom_vert = suppressWarnings(hom_vert[!is.na(as.numeric(hom_vert$`HomoloGene ID`)),])
# The table format has changed
hom_vert = suppressWarnings(hom_vert[!is.na(as.numeric(hom_vert$`DB Class Key`)),])

# Provide some output to help the user
print("Species for which homology classes are available:")
Expand Down