Skip to content

Deploying your shiny app on shinyapps.io

Aarthi Ramakrishnan

Following are the commands you would require to deploy your shiny app successfully onto https://shinyapps.io/ for the whole world to use -

rsconnect::setAccountInfo(name='<your username>', 
				token='<your token>', 
				secret='<your secret token>')

Information for the above fields can be obtained from this link once you login to your account on shinyapps.io.

Next, to avoid the following error -

Error: Unhandled Exception: Child Task XXX failed: Error parsing manifest: Unable to determine package source for Bioconductor package AnnotationDbi: Repository must be specified

make sure that the package source for Bioconductor packages is set correctly -

library(BiocManager)
options(repos = BiocManager::repositories())

Finally, execute the following command -

rsconnect::deployApp()

You should now be able to deploy your app successfully.

Bioinformatics

Related Posts

Interesting Bioinformatics Articles

Following is a collection of articles which I feel every Bioinformatician must be aware of. I will keep updating this list from time to time - 1. All biology is computational biology 2. Core services: Reward bioinformaticians 3. Importance of stupidity in scientific research

Interesting Bioinformatics Articles

Screen command in UNIX

Screen is a very useful command to have in your toolbox if you frequently use interactive sessions on your supercomputer logged in through a VPN. A VPN typically has a time limit, and you may get disconnected from it without any warning when you have poor internet connection. Screen program

Screen command in UNIX

Types of models in DESeq2

There are 2 major types of regression models one can specify in DESeq2 to explore the raw count matrices from an RNA-seq experiment - * Mean-reference model for Factors * Regression model for Covariates Mean-reference model for Factors - Factors typically represent categorical variable such as Gender, Ethnicity, Race etc. The mean-reference

Types of models in DESeq2