forked from CRG-Beato/utils_beatolab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_public_docs_and_github.sh
executable file
·86 lines (62 loc) · 2.32 KB
/
update_public_docs_and_github.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash
#==================================================================================================
# Created on: 2017-06-01
# Usage: ./update_public_docs_and_github.sh <project> <analysis> <tag>
# Author: Javier Quilez (GitHub: jaquol)
# Goals:
# (i) copy project-specific analyses from their original directory to the one which is visible
# from the public-docs website http://public-docs.crg.es/mbeato/jquilez/
# ipy_hide_input is used to remove the code from the *.slides.html report
# source: http://hannes-brt.github.io/blog/2013/08/11/ipython-slideshows-will-change-the-way-you-work/
# (ii) git add, commit and push analysis to GitHub
#==================================================================================================
#==================================================================================================
# CONFIGURATION VARIABLES AND PATHS
#==================================================================================================
# variables
project=$1
analysis=$2
tag=$3
# paths
PROJECTS=/users/mbeato/projects/projects
FILE_TRANSFER=/users/mbeato/public-docs
ipy_hide_input=/users/mbeato/projects/utils/ipy_hide_input
#==================================================================================================
# COMMANDS
#==================================================================================================
update_public_docs() {
p=$1
a=$2
echo "... updating https://public_docs.crg.es/mbeato/public-docs/projects/$p/$a"
# make output directories
ODIR=$FILE_TRANSFER/projects/$p/$a
rm -fr $ODIR
mkdir -p $ODIR
# copy analysis directories to output directory
ANALYSIS=$PROJECTS/$p/analysis/$a
for d in `ls $ANALYSIS |grep -v data`; do
cp -r $ANALYSIS/$d $ODIR
done
# copy project notebook to output directory
if [ -e $PROJECTS/$p/project_notebook* ]; then
cp -fr $PROJECTS/$p/project_notebook* $FILE_TRANSFER/projects/$p/
fi
# convert ipython notebook to html
cd $ODIR
for i in `ls *ipynb`; do
jupyter nbconvert --to slides *ipynb
$ipy_hide_input $analysis.slides.html
done
}
update_github_repo() {
p=$1
a=$2
t=$3
echo "... updating https://github.com/CRG-Beato/projects/$p/$a"
cd $PROJECTS
git add --all $p/analysis/$a
git commit -m "$t"
git push
}
update_public_docs $project $analysis
update_github_repo $project $analysis "$tag"