Mercurial > repos > bcclaywell > microbiome_pplacer_suite
annotate render_datatable-wrapper.sh @ 8:35f9b833e12b draft default tip
planemo upload commit 2774930eebe258ecd56c8f1c5ddabf5092282ab9
author | bcclaywell |
---|---|
date | Mon, 12 Oct 2015 16:09:02 -0400 |
parents | d4690e65afcd |
children |
rev | line source |
---|---|
0 | 1 #!/bin/bash |
2 | |
3 source $(dirname $0)/util.sh | |
4 source $1 | |
5 | |
6 mkdir -p ${OUTPUT_DIR} | |
7 | |
8 python $(dirname $0)/render_datatable.py \ | |
9 < ${INPUT} \ | |
10 > ${OUTPUT_DIR}/index.html | |
11 | |
12 cat <<EOF > ${OUTPUT} | |
13 <!DOCTYPE HTML> | |
14 <html lang="en-US"> | |
15 <head/> | |
16 <body> | |
17 <a href="index.html">Generated table</a> | |
18 </body> | |
19 </html> | |
20 EOF |