-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_motifs.sh
More file actions
executable file
·13 lines (13 loc) · 924 Bytes
/
run_motifs.sh
File metadata and controls
executable file
·13 lines (13 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
## simple regulation, negative and positive autoregulation
{ time swipl -l motifcodes/srnarpar.pl > output/srnarpar-out.txt 2>output/srnarpar-err.txt ; } 2>output/srnarpar-time.txt
## bi-fan with two promoters and two repressors
{ time swipl -l motifcodes/bifana.pl > output/bifana-out.txt 2>output/bifana-err.txt ; } 2>output/bifana-time.txt
## bifan with three promoters and one repressor
{ time swipl -l motifcodes/bifanb.pl > output/bifanb-out.txt 2>output/bifanb-err.txt ; } 2>output/bifanb-time.txt
## coherent feed-forward loop
{ time swipl -l motifcodes/cffl1.pl > output/cffl1-out.txt 2>output/cffl1-err.txt ; } 2>output/cffl1-time.txt
## incoherent feed-forward loop
{ time swipl -l motifcodes/iffl1.pl > output/iffl1-out.txt 2>output/iffl1-err.txt ; } 2>output/iffl1-time.txt
## single input module
{ time swipl -l motifcodes/sim.pl > output/sim-out.txt 2>output/sim-err.txt ; } 2>output/sim-time.txt