Created
May 12, 2017 08:55
-
-
Save kieranrcampbell/7eb3fcdd824169c6f062ca2f524ccf2c to your computer and use it in GitHub Desktop.
Snakemake to build Rmarkdown files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule exploratory_analysis: | |
input: | |
"data/tec_sceset_qc.rds", "analysis/02_exploratory_analysis.html" | |
output: | |
"data/tec_sceset_clusters.rds", | |
"analysis/02_exploratory_analysis.Rmd", | |
"data/deseq2_results.csv" | |
shell: | |
"Rscript -e \"rmarkdown::render('analysis/02_exploratory_analysis.Rmd')\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment