-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·22 lines (15 loc) · 767 Bytes
/
build.sh
File metadata and controls
executable file
·22 lines (15 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -o errexit
NORM="\\033[0;39m"
BLUE="\\033[1;34m"
echo -e "$BLUE" " Copying scripts gene annotation scripts to $genomePath/bin/scripts ..." "$NORM"
echo -e "$BLUE" "--------------------------" "$NORM"
cp ${genomePath}/src/gene_annotation_scripts/*.sh $genomePath/bin/scripts/
cp ${genomePath}/src/gene_annotation_scripts/*.py $genomePath/bin/scripts/
cp ${genomePath}/src/gene_annotation_scripts/*.p*l $genomePath/bin/scripts/
echo -e "$BLUE" " Changing group to hillerlab and add write rights ..." "$NORM"
echo -e "$BLUE" "--------------------------" "$NORM"
#chgrp hillerlab ${genomePath}/bin/scripts/* -R
#chmod g+w ${genomePath}/bin/scripts/* -R
echo -e "$BLUE" " DONE" "$NORM"
echo -e "$BLUE" " --------------------------" "$NORM"