Skip to content

Commit

Permalink
fix TRUE word
Browse files Browse the repository at this point in the history
  • Loading branch information
lpantano committed Feb 15, 2015
1 parent fac0084 commit 771d440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/internal.R
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ collapse.mirs<-function(table,ref=FALSE,iso5=FALSE,iso3=FALSE,
freq=NULL
if (ref==TRUE){
ref.val<-do.call(paste,table[,4:7])
ref.val[grep("[ATGC]",ref.val,invert=T)]<-"ref"
ref.val[grep("[ATGC]",ref.val,invert=TRUE)]<-"ref"
ref.val[grep("[ATGC]",ref.val)]<-"iso"
label<-paste(label,ref.val,sep=".")
}
Expand Down

0 comments on commit 771d440

Please sign in to comment.