-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRUN_validate_DELS.sh
58 lines (42 loc) · 1.69 KB
/
RUN_validate_DELS.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
#!/bin/bash
#input_TP_4=./test_sample/deletions_SAMPLE.csv
input_TP_4=$1
#$2='./test_sample/'
outputf=$2'output_deletions/'
mkdir $outputf
#output_path_TP_4=./test_sample/output_deletions/
output_path_TP_4=$outputf
# ________________________________________________________________________________________________
echo "Processing data:"
# look scripts:
python look_repRegions2.py $input_TP_4 $output_path_TP_4 &
python look_segDuplications2.py $input_TP_4 $output_path_TP_4 &
# Segmental Duplcations and Repititve regions covereage:
python segDuplication_coverage.py $input_TP_4 $output_path_TP_4 &
python repRegions_coverage.py $input_TP_4 $output_path_TP_4 &
python segDUPS_find_pair2.py $input_TP_4 $output_path_TP_4 &
# Centromeres and Telomeres:
python Centro_Telo_match2.py $input_TP_4 $output_path_TP_4 &
# GCcontent:
python GCcontent2.py $input_TP_4 $output_path_TP_4 &
# Sequence Complexity:
python SeqComplexity.py $input_TP_4 $output_path_TP_4 &
# Replication Time #NOT USED
#python Replication_Time2.py $input_TP_4 $output_path_TP_4
# Recombination Rate: #(WARRING - RISK OF MISSING DATA!)
python Recombination_Rate2.py $input_TP_4 $output_path_TP_4 &
#Introns and Exons coverage:
python Genes_V3.py $input_TP_4 $output_path_TP_4 &
# Lamina Associated domains:
python Lamina_Associ_Dom.py $input_TP_4 $output_path_TP_4 &
# CpG island distance:
python CpG_island2.py $input_TP_4 $output_path_TP_4 &
# TAD Boundaries:
python TADs2.py $input_TP_4 $output_path_TP_4 &
wait
echo "Dels data ready!!!"
echo "Assembling dataset!"
python makedataset-deletions.py $output_path_TP_4 $output_path_TP_4
echo "Start predicting!"
python predictClassify.py $output_path_TP_4 DEL $output_path_TP_4
echo "Done!"