-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_tests.sh
51 lines (29 loc) · 2.39 KB
/
run_tests.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
if [[ $(which docker) && $(docker --version) ]]; then
echo "Starting to process the pathways"
else
echo "Docker not isntalled. Please see https://docs.docker.com/engine/install/"
exit 2
fi
echo "Running: Cell_Cycle_Checkpoints"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Cell_Cycle_Checkpoints.yaml"
echo "Running: HDR_through_Homologous_Recombination_HRR_or_Single_Strand_Annealing_SSA_"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/HDR_through_Homologous_Recombination_HRR_or_Single_Strand_Annealing_SSA_.yaml"
echo "Running: Mitotic_G2-G2_M_phases"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Mitotic_G2-G2_M_phases.yaml"
echo "Running: Mitotic_Prophase"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Mitotic_Prophase.yaml"
echo "Running: Mitotic_G1-G1_S_phases"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Mitotic_G1-G1_S_phases.yaml"
echo "Running: PIP3_activates_AKT_signaling"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/PIP3_activates_AKT_signaling.yaml"
echo "Running: RAF_MAP_kinase_cascade"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/RAF_MAP_kinase_cascade.yaml"
echo "Running: Signaling_by_ERBB2"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Signaling_by_ERBB2.yaml"
echo "Running: Signaling_by_WNT"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Signaling_by_WNT.yaml"
echo "Running: S_Phase"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/S_Phase.yaml"
echo "Running: Transcriptional_Regulation_by_TP53"
docker run -v $(pwd):/data -t oicr/mpbiopath:1.0.4 /bin/bash -c "julia bin/mp-biopath inference --config /data/configs/Transcriptional_Regulation_by_TP53.yaml"
echo "\nGenerated results for each of the pathways can be found here: /results/test-new/"