-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsam.sublime-syntax
393 lines (352 loc) · 9.42 KB
/
sam.sublime-syntax
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
%YAML 1.2
---
# SAM syntax highlighting file
# Maintainer: bioSyntax.org
# Version: v0.1
# See http://www.sublimetext.com/docs/3/syntax.html
name: sam
file_extensions:
- sam
scope: source.sam
contexts:
main:
- match: '^@HD'
scope: header.sam
push: header_entry_hd
- match: '^@SQ'
scope: header.sam
push: header_entry_sq
- match: '^@RG'
scope: header.sam
push: header_entry_rg
- match: '^@PG'
scope: header.sam
push: header_entry_pg
- match: '^@CO'
scope: header.sam
push: header_entry_co
# entering sequence alignment section
# column 1 of sequence alignment: QNAME
- match: '^[\S]*\t'
scope: keyword.sam
push: flag_column
# header entries
header_entry_hd:
- meta_scope: string.sam
- match: '(?<=[A-Z]{2}:)"'
scope: invalid.sam
push: header_entry_quote
- match: '(?<=VN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: numeric.sam
# Sort Order for sam file
# Distinguishes sorted from unsorted files
- match: '(?<=SO:)(coordinate|queryname(?=\s+[A-Z]{2}:)|.+$)'
scope: bon.sam
- match: '(?<=SO:)(unsorted|unknown(?=\s+[A-Z]{2}:)|.+$)'
scope: mal.sam
- match: '(?<=SO:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=GO:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '$'
pop: true
header_entry_sq:
- meta_scope: string.sam
- match: '(?<=[A-Z]{2}:)"'
scope: invalid.sam
push: header_entry_quote
- match: '(?<=SN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: chr.sam
- match: '(?<=LN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: chrStart.sam
- match: '(?<=AH:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=AN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=AS:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=M5:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=SP:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=UR:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: $
pop: true
header_entry_rg:
- meta_scope: string.sam
- match: '(?<=[A-Z]{2}:)"'
scope: invalid.sam
push: header_entry_quote
- match: '(?<=ID:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: library.sam
- match: '(?<=LB:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: library.sam
- match: '(?<=CN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=DS:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=DT:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=FO:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=KS:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=PG:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: platform.sam
- match: '(?<=PI:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=PL:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: platform.sam
- match: '(?<=PM:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: keyword.sam
- match: '(?<=PU:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: platform.sam
- match: '(?<=SM:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: library.sam
- match: $
pop: true
header_entry_pg:
- meta_scope: string.sam
- match: '(?<=[A-Z]{2}:)"'
scope: variable.parameter.sam
push: header_entry_quote
- match: '(?<=ID:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: software.sam
- match: '(?<=PN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: software.sam
- match: '(?<=CL:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: command.sam
- match: '(?<=PP:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: software.sam
- match: '(?<=DS:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: string.sam
- match: '(?<=VN:)(.+?(?=\s+[A-Z]{2}:)|.+$)'
scope: numeric.sam
- match: $
pop: true
header_entry_co:
- meta_scope: string.sam
- match: '(?<=[A-Z]{2}:)"'
scope: comment.am
push: header_entry_quote
- match: $
pop: true
header_entry_quote:
- meta_scope: variable.parameter.sam
- match: '"'
pop: true
# sequence alignment columns
# column 2: FLAG
flag_column:
# Read Flag
# If flag > 512
# read is QC-fail | PCRdup | 2' alignment
- match: '[0-9]{1,2}(?=\t)'
scope: numeric.sam
- match: '[1-4][0-9]{1,2}(?=\t)'
scope: numeric.sam
- match: '[5][0][0-9](?=\t)'
scope: numeric.sam
- match: '[5][1][01](?=\t)'
scope: numeric.sam
- match: '[5][1][01]'
scope: ntC.sam
- match: '[\S]*'
scope: ntC.sam
- match: \t
push: rname_column
- match: $
pop: true
# column 3: RNAME: usually a chromosome id
rname_column:
- match: '[\S]*'
scope: chr.sam
- match: \t
push: pos_column
- match: $
pop: true
# column 4: POS: 1-based leftmost mapping POSition of the first CIGAR operation that “consumes” a reference base
pos_column:
- match: '[\S]*'
scope: chrStart.sam
- match: \t
push: mapq_column
- match: $
pop: true
# column 5: MAPQ: MAPping Quality.
mapq_column:
- match: '(255|[0-9])(?=\t)'
scope: gradbw1
- match: '1[0-9](?=\t)'
scope: gradbw3
- match: '2[0-9](?=\t)'
scope: gradbw5
- match: '3[0-9](?=\t)'
scope: gradbw7
- match: '4[0-9](?=\t)'
scope: gradbw9
- match: '[\S]*'
scope: gradbw9
- match: \t
push: cigar_column
- match: $
pop: true
# column 6: CIGAR: Alignment details
cigar_column:
# CIGAR Strings
# M: Alignment match
# I: Insertion
# D: Deletion
# N: Skipped region (intron)
# S: Soft Clip
# H: Hard Clip
# P: Padding
# =: Sequence Match
# X: Sequence Mismatch
# *: String Absent
- match: '\d+[NSHP]'
scope: cigClip.sam
- match: '\d+[M=]'
scope: cigMat.sam
- match: '\d+[X]'
scope: cigMis.sam
- match: '\d+[D]'
scope: cigDel.sam
- match: '\d+[I]'
scope: cigIns.sam
- match: '[\S]*'
scope: comment.sam
- match: \t
push: rnext_column
- match: $
pop: true
# column 7: RNEXT Reference sequence name of the primary alignment of the NEXT read in the template.
rnext_column:
- match: "="
scope: chr.sam
push: pnext_column_gateway
- match: "[0-9]*(?=\t)"
scope: chrStart.sam
push: pnext_column_gateway
- match: "\\*"
scope: keyword.sam
push: pnext_alt_seq_column_gateway
- match: '[\S]*(?=\t)'
scope: keyword.Start
push: pnext_alt_seq_column_gateway
- match: $
pop: true
# column 8: PNEXT: Position of the primary alignment of the NEXT read in the template.
pnext_column_gateway:
- match: \t
push: pnext_column
- match: $
pop: true
pnext_column:
# - meta_scope: invalid.sam
- match: '[\S]*'
scope: chrStart.sam
- match: \t
push: tlen_column
- match: $
pop: true
pnext_alt_seq_column_gateway:
- match: \t
push: pnext_alt_seq_column
- match: $
pop: true
pnext_alt_seq_column:
# - meta_scope: invalid.sam
- match: '[\S]*'
scope: keyword.Start
- match: \t
push: tlen_column
- match: $
pop: true
# column 9: TLEN: signed observed Template LENgth.
tlen_column:
- match: '[\S]*'
scope: comment.sam
- match: \t
push: seq_column
- match: $
pop: true
# column 10: SEQ: segment SEQuence.
seq_column:
- match: "A"
scope: ntA.sam
- match: "C"
scope: ntC.sam
- match: "G"
scope: ntG.sam
- match: "T"
scope: ntT.sam
- match: "N"
scope: ntN.sam
- match: \t
push: qual_column
- match: $
pop: true
# column 11: QUAL: ASCII of base QUALity plus 33 (same as the
# quality string in the Sanger FASTQ format).
# Complete Phred Scale
#!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
# Illumina 1.8 Scale (IMPLEMENTED)
# 0.2.......................26...31.......41
# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKL
# | | | | | | | | | | | ...
qual_column:
- match: "[\\!\\#\\$]"
scope: gradbw0
- match: "[%\\&\\'\\(]"
scope: gradbw1
- match: "[\\)\\*\\+\\,]"
scope: gradbw2
- match: "[\\-\\.\\/0]"
scope: gradbw3
- match: "[1-4]"
scope: gradbw4
- match: "[5-8]"
scope: gradbw5
- match: "[9\\:\\;\\<]"
scope: gradbw6
- match: "[\\=\\>\\?\\@]"
scope: gradbw7
- match: "[ABCD]"
scope: gradbw8
- match: "[EFGHIJ]"
scope: gradbw9
- match: "[K-Z\\[\\\\]"
scope: gradbw10
- match: "[\\]\\^\\_\\`a-f]"
scope: gradbw10
- match: "[g-p]"
scope: gradbw10
- match: "[q-z]"
scope: gradbw10
- match: "[\\{\\|\\}\\~]"
scope: gradbw10
- match: \t
push: data_tag_entry
- match: $
pop: true
data_tag_entry:
- meta_scope: string.sam
# Data Classes: numeric / string / class
# A Printable
# i signed integer
# f floating point
# Z string with spaces
# H byte array hex
# B Integer/Numeric Array
- match: "[A-Z]{2}(?=:)"
scope: string.sam
- match: "(?<=:)[AifZHB]:"
scope: comment.sam
- match: "(?<=[ifH]:)(.+?(?=\t)|.+$)"
scope: numeric.sam
- match: "(?<=[AZB]:)(.+?(?=\t)|.+$)"
scope: numeric2.sam
- match: "$"
pop: true