Skip to content

Commit

Permalink
Update VariantSummary.R
Browse files Browse the repository at this point in the history
Fix a typo deprecated
  • Loading branch information
chenweng1991 authored Mar 6, 2024
1 parent b6bddc5 commit 93332c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/VariantSummary.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#' @import dplyr
DepthSummary<-function(path,CellSubset=NA,only_Total=T){
message("By default only total depth is summarized")
message("Depprecated ")
message("deprecated")
QualifiedTotalCts<-read.table(paste(path,"/QualifiedTotalCts",sep=""))
if(!is.na(CellSubset)){
print("Will subset cells...")
Expand Down Expand Up @@ -315,4 +315,4 @@ res<-Specific %>% group_by(V2) %>% dplyr::summarise(Specific=n()) %>% merge(res,
res<-res %>% mutate(VerySensitive=VerySensitive/Total) %>% mutate(Sensitive=Sensitive/Total) %>% mutate(Specific=Specific/Total)
colnames(res)[1]<-"Cell"
return(res)
}
}

0 comments on commit 93332c6

Please sign in to comment.