Program for the analysis of binding events
There are two major ways to run Anabel. You can either run it locally on your PC (go to installation method 1) or host it for free online on shinyapps.io (go to installation method 2). Either way, you first need to install the current version of Cran R on your computer. If you do not have R yet, you can download it here:
Choose your system, download the file and follow the installation instructions or use one of the following links: Windows Linux Mac
- Download the current version of Anabel to your system. To do this, click on the green "Clone and Download" button and then click on "Download Zip". After download, simply unzip the file. If you want to use an older Anabel version, go to "Releases" and choose the one of interest.
- Start R on your computer (If you do not have R yet, download and install it for Windows, Linux or Mac).It might be possible that you find two R programmes installed on your computer. Simply use the 64bit version (if you have a 64bit computer). However, either version should work. Just be careful to always keep to the same one.
- Run the following R commands (Copy and paste the commands one after another into R and press "enter"). After excecuting the first command, you will be asked to choose a Cran Mirror. This is the server from which R will download all the nessecary files. Simply choose whichever one is located in your country. Yet, every server will work, even if it is not one in your country. The installation process of one command is finished when the ">" sign reappears and the cursor starts to blink again. Then you can copy and paste the next command.
install.packages(c("shiny","markdown", "shinydashboard", "XLConnect", "ggplot2")) install.packages(c("reshape2","DT","ggExtra","cowplot","plyr","gridExtra","openxlsx"))
- Congratulations! You have now installed everything that is needed to run Anabel. Now, in order to start Anabel, just use the following two commands. Be aware to substitute PATH with the actual path of the unzipped Anabel folder on your computer. It might happen that the unzipping process generates an Anabel folder that contains another Anabel folder. Please use the folder containing all the seperate files listed above for the PATH. Moreover, DO NOT REMOVE THE QUOTATION MARKS! Furthermore, Windows users have to substitute the backslashes "\" with normal slashes "/" in the PATH!
Example: runApp("~/Desktop/Anabel-master") Now, a browser window should pop up showing the start screen of Anabel. Have fun evaluating your data!
library(shiny) runApp("PATH")
- If you like to restart Anabel in order to perform a new analysis, simply reload the page in your browser. Thereafter, everything is set back to default.
- To stop Anabel, go back to R and click on the "Stop" button. Now, you can close everything.
- In order to restart Anabel, repeat step 5.
-
Download the current version of Anabel to your system. To do this, click on the green "Clone and Download" button and then click on "Download Zip". After download, simply unzip the file. If you want to use an older Anabel version, go to "Releases" and choose the one of interest.
-
Go to https://www.shinyapps.io/ and sign in.
-
Open up R (If you do not have R yet, Download and install it for Windows, Linux or Mac) and initialise your shinyapps-io account by copying and pasting the commands shown on shinyapps.io into your R console. After excecuting the first command, you will be asked to choose a Cran Mirror. This is the server from which R will download all the nessecary files. Simply choose whichever one is located in your country. Yet, every server will work, even if it is not one in your country. The installation process of one command is finished when the ">" sign reappears and the cursor starts to blink again. Then you can copy and paste the next command.
-
Upload anabel by using the following two commands. Be aware to substitute PATH with the actual path of the unzipped Anabel folder on your computer. DO NOT REMOVE THE QUOTATION MARKS! Furthermore, Windows users have to substitute the backslashes "\" with normal slashes "/" in the PATH!
library(rsconnect) rsconnect::deployApp("PATH")
For example: rsconnect::deployApp("~/Desktop/Anabel")
-
After hitting the enter key, R will upload Anabel to your shinyapps.io account. Thereafter, a browser window should pop up running Anabel. Now, you can save the URL of the page and go back to it whenever you like. From now on,you can access this URL from any PC.
-
If you like to restart Anabel in order to perform a new analysis, simply reload the page in your browser. Thereafter, everything is set back to default.