projects
/
rnaseq-cwl-training.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove software carpentries logo
[rnaseq-cwl-training.git]
/
bin
/
knit_lessons.sh
1
#!/usr/bin/env bash
2
3
# Only try running R to translate files if there are some files present.
4
# The Makefile passes in the names of files.
5
6
if [ $# -eq 2 ] ; then
7
Rscript -e "source('bin/generate_md_episodes.R')" "$@"
8
fi