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
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
1091
rMATSEventTypeText<-"Exon Skipping"
1092
-
} elseif (rMATSEventType=="IR") {
1092
+
} elseif (rMATSEventType[1]=="IR") {
1093
1093
rMATSEventTypeText<-"Intron Retention"
1094
-
} elseif (rMATSEventType=="Altss") {
1094
+
} elseif (rMATSEventType[1]=="Altss") {
1095
1095
rMATSEventTypeText<-"Alternative splice site (Altss)"
0 commit comments