Skip to content

Commit

Permalink
Kill the head vampire!
Browse files Browse the repository at this point in the history
I unclassed the table in the internal function.
  • Loading branch information
zkamvar committed May 12, 2015
1 parent 08d51d9 commit 82eb32d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/internal.r
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ mlg.matrix <- function(x){
colnames(mlg.mat) <- 1:mlgs
}
colnames(mlg.mat) <- paste("MLG", colnames(mlg.mat), sep=".")
return(mlg.mat)
return(unclass(mlg.mat))
}
#==============================================================================#
# DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion R/mlg.r
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ mlg.table <- function(pop, sublist="ALL", blacklist=NULL, mlgsub=NULL, bar=TRUE,
}
}
mlgtab <- mlgtab[, which(colSums(mlgtab) > 0)]
return(unclass(mlgtab))
return(mlgtab)
}

#==============================================================================#
Expand Down

0 comments on commit 82eb32d

Please sign in to comment.