-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
if one wishes to generate the html via make, I added the makefile.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.PHONY: all | ||
|
||
OUTPUTS = tmrc.simg | ||
|
||
cpm: | ||
mkdir -p cpm/3_cali_and_tumaco cpm/4_cali cpm/4_tumaco excel figures rda rpkm | ||
|
||
preprocessing/TMRC30001: | ||
cd preprocessing && tar xaf pruned_counts_host.tar | ||
cd preprocessing && tar xaf pruned_counts_parasite.tar | ||
cd preprocessing && tar xaf scott_counts.tar | ||
|
||
%.render: %.Rmd cpm preprocessing/TMRC30001 | ||
Rscript -e "hpgltools::renderme('$<', 'html_document')" \ | ||
2>&1 | tee $(basename $<).stdout | ||
|
||
%.edit: %.Rmd | ||
emacs -nw $<.Rmd |