-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTreeAddTax.py
36 lines (31 loc) · 1.33 KB
/
TreeAddTax.py
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
#!/usr/bin/python
# This script make annotation file
#python TreeAddTax.py RefSoilFullTax_w_id.txt Annot.step2.txt
import sys, os
import modules
full_path = os.path.realpath(__file__)
filedefault = os.path.dirname(full_path)+"/DefaultAnnoNoRing.txt"
deread = open(filedefault,'r')
fwrite = open(sys.argv[2],'w')
#write default
for line in deread:
fwrite.write(line)
fwrite.write('\n')
#Make Tax table
Tax = modules.ReadRefSoilTax(sys.argv[1])
# class color assignment
classColor = modules.AssignColor2(Tax)
for i in range(len(Tax)):
tempColor = "k"
for j in range(len(classColor)):
if (classColor[j][0]==Tax[i][2]):
tempColor = classColor[j][1]
NoDocTax = Tax[i][0].split('.')
#fwrite.write(NoDocTax[0]+'\t'+"annotation"+'\t'+Tax[i][2]+'\n')
fwrite.write(NoDocTax[0]+'\t'+"annotation_background_color"+'\t'+tempColor+'\n')
fwrite.write(NoDocTax[0]+'\t'+"clade_marker_color"+'\t'+tempColor+'\n')
fwrite.write(NoDocTax[0]+'\t'+"clade_marker_size"+'\t'+"30"+'\n')
fwrite.write(NoDocTax[0]+'\t'+"clade_marker_edge_width"+'\t'+"0.1"+'\n')
for i in range(len(classColor)):
fwrite.write(classColor[i][0]+'\t'+"annotation"+'\t'+classColor[i][0]+'\n')
fwrite.write(classColor[i][0]+'\t'+"clade_marker_color"+'\t'+classColor[i][1]+'\n')