You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rMATSEventType<-rMATSEventType[1] #adding [1] so we avoid the error of comparing more than one event. this happens because shiny is slow and does not automatically update this value
1089
1090
rMATSEventTypeText<-""
1090
-
if (rMATSEventType[1]=="EX") {#adding [1] so we avoid the error of comparing more than one event. this happens because shiny is slow and does not automatically update this value
1091
+
if (rMATSEventType=="EX") {
1091
1092
rMATSEventTypeText<-"Exon Skipping"
1092
-
} elseif (rMATSEventType[1]=="IR") {
1093
+
} elseif (rMATSEventType=="IR") {
1093
1094
rMATSEventTypeText<-"Intron Retention"
1094
-
} elseif (rMATSEventType[1]=="Altss") {
1095
+
} elseif (rMATSEventType=="Altss") {
1095
1096
rMATSEventTypeText<-"Alternative splice site (Altss)"
0 commit comments