File tree 2 files changed +31
-7
lines changed
2 files changed +31
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,13 @@ contexts:
21
21
22
22
# Column 2: Start coordinate
23
23
start :
24
- - match : ([0-9|\.]+)\b
24
+ - match : ([0-9|\.](?=\d{2}\t))
25
+ scope : chrStart2.bed
26
+ - match : ([0-9|\.](?=\d{5}\t))
27
+ scope : chrStart2.bed
28
+ - match : ([0-9|\.](?=\d{8}\t))
29
+ scope : chrStart2.bed
30
+ - match : ([0-9|\.])
25
31
scope : chrStart.bed
26
32
- match : \t
27
33
push : end
@@ -30,8 +36,14 @@ contexts:
30
36
31
37
# Column 3: End Coordinate
32
38
end :
33
- - match : ([0-9|\.]+)\b
34
- scope : chrEnd.bed
39
+ - match : ([0-9|\.](?=\d{2}\t))
40
+ scope : chrStart2.bed
41
+ - match : ([0-9|\.](?=\d{5}\t))
42
+ scope : chrStart2.bed
43
+ - match : ([0-9|\.](?=\d{8}\t))
44
+ scope : chrStart2.bed
45
+ - match : ([0-9|\.])
46
+ scope : chrStart.bed
35
47
- match : \t
36
48
push : name
37
49
- match : $
Original file line number Diff line number Diff line change @@ -39,16 +39,28 @@ contexts:
39
39
pop : true
40
40
41
41
start :
42
- - match : ([0-9|\.]+)\b
43
- scope : chrStart.gtf
42
+ - match : ([0-9|\.](?=\d{2}\t))
43
+ scope : chrStart2.bed
44
+ - match : ([0-9|\.](?=\d{5}\t))
45
+ scope : chrStart2.bed
46
+ - match : ([0-9|\.](?=\d{8}\t))
47
+ scope : chrStart2.bed
48
+ - match : ([0-9|\.])
49
+ scope : chrStart.bed
44
50
- match : \t
45
51
push : end
46
52
- match : $
47
53
pop : true
48
54
49
55
end :
50
- - match : ([0-9|\.]+)\b
51
- scope : chrEnd.gtf
56
+ - match : ([0-9|\.](?=\d{2}\t))
57
+ scope : chrStart2.bed
58
+ - match : ([0-9|\.](?=\d{5}\t))
59
+ scope : chrStart2.bed
60
+ - match : ([0-9|\.](?=\d{8}\t))
61
+ scope : chrStart2.bed
62
+ - match : ([0-9|\.])
63
+ scope : chrEnd.bed
52
64
- match : \t
53
65
push : score
54
66
- match : $
You can’t perform that action at this time.
0 commit comments