-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashscript_temp.sh
More file actions
executable file
·27 lines (23 loc) · 903 Bytes
/
bashscript_temp.sh
File metadata and controls
executable file
·27 lines (23 loc) · 903 Bytes
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
mkdir ./projects/
mkdir ./projects/membrane-beta_4state
cd projects/membrane-beta_4state
echo -e "This is a template, follow the steps: " > readme.txt
echo "Notes for individual project" > notes.txt
mkdir ./scripts/ # directory for all the python/R/perl scripts
mkdir ./bash/ # driver scripts that call all other scripts and execute pipelines
touch ./bash/runall.sh # the main driver script
touch ./bash/filter.sh # scripts that I use usually only once to filter input directories and create soft links
mkdir ./input/ # input directories
mkdir ./output/ # output directories
mkdir ./logs # stdout and stderr of runall.sh scripts
touch readme.txt # description of files and scripts in this project folder
touch commands.txt # commands that I run in this directory
mkdir datasets
mkdir general_scripts
mkdir codes
cd codes
echo "#This is a sample code" > samplecode.py
cd ..
mkdir bin
mkdir output
cd