Closed esimonds closed 4 years ago
Pull request added:
Closing this as the Shiny app is no longer supported. While we regret any inconvenience this decision might cause, we feel strongly that interactive data preprocessing (using a GUI) is inefficient, especially for evermore frequent large-scale data, and irreproducible, thereby defeating the purpose of using R in the first place. We have thus decided to focus our efforts towards maintaining and further developing the package's (non-GUI) functionality.
Closing this as the Shiny app is no longer supported.
I recommend updating https://catalyst-project.github.io/, which still references the launchGUI function, and gives an error when the function is called.
Thanks for the great work on the CATALYST package. I encountered an error in the shiny GUI normalizer on my system:
This error occurs after gating and pressing "Apply" and the browser does not create the line plots showing un-smoothed vs. smoothed data. However, it does proceed with showing the Mahalanobis distance plots.
I used a small (115MB) FCS file for testing and uploaded the same file to http://imlspenticton.uzh.ch:3838/CATALYSTLite/ . On the UZH server, I did not get the error, so this may be due to my specific package or OS versions. I've attached sessionInfo() as a txt file here:
sessionInfo.txt
I've isolated the error to line 375 in server-normalization.R, which calls the .arrangeSmoothed function without properly defining the arguments to the function. I'll try to submit a pull request fixing the bug.
Original code (v1.11.0 from GitHub):
CATALYST:::.arrangeSmoothed(p1, p2, shiny=TRUE)"
New proposed code:CATALYST:::.arrangeSmoothed(p1=p1, p2=p2, shiny=TRUE) # fix bug "Warning: Error in arrangeGrob: argument "p2" is missing, with no default"