Export hgvs-onehot.
[lightning.git] / tilelib.go
1 package lightning
2
3 import (
4         "bufio"
5         "bytes"
6         "context"
7         "encoding/gob"
8         "fmt"
9         "io"
10         "regexp"
11         "runtime"
12         "sort"
13         "strings"
14         "sync"
15         "sync/atomic"
16
17         log "github.com/sirupsen/logrus"
18         "golang.org/x/crypto/blake2b"
19 )
20
21 type tileVariantID uint16 // 1-based
22
23 type tileLibRef struct {
24         Tag     tagID
25         Variant tileVariantID
26 }
27
28 type tileSeq map[string][]tileLibRef
29
30 func (tseq tileSeq) Variants() ([]tileVariantID, int, int) {
31         maxtag := 0
32         for _, refs := range tseq {
33                 for _, ref := range refs {
34                         if maxtag < int(ref.Tag) {
35                                 maxtag = int(ref.Tag)
36                         }
37                 }
38         }
39         vars := make([]tileVariantID, maxtag+1)
40         var kept, dropped int
41         for _, refs := range tseq {
42                 for _, ref := range refs {
43                         if vars[int(ref.Tag)] != 0 {
44                                 dropped++
45                         } else {
46                                 kept++
47                         }
48                         vars[int(ref.Tag)] = ref.Variant
49                 }
50         }
51         return vars, kept, dropped
52 }
53
54 type tileLibrary struct {
55         retainNoCalls       bool
56         skipOOO             bool
57         retainTileSequences bool
58
59         taglib         *tagLibrary
60         variant        [][][blake2b.Size256]byte
61         refseqs        map[string]map[string][]tileLibRef
62         compactGenomes map[string][]tileVariantID
63         // count [][]int
64         seq      map[[blake2b.Size256]byte][]byte
65         variants int64
66         // if non-nil, write out any tile variants added while tiling
67         encoder *gob.Encoder
68
69         mtx   sync.RWMutex
70         vlock []sync.Locker
71 }
72
73 func (tilelib *tileLibrary) loadTagSet(newtagset [][]byte) error {
74         // Loading a tagset means either passing it through to the
75         // output (if it's the first one we've seen), or just ensuring
76         // it doesn't disagree with what we already have.
77         if len(newtagset) == 0 {
78                 return nil
79         }
80         tilelib.mtx.Lock()
81         defer tilelib.mtx.Unlock()
82         if tilelib.taglib == nil || tilelib.taglib.Len() == 0 {
83                 tilelib.taglib = &tagLibrary{}
84                 err := tilelib.taglib.setTags(newtagset)
85                 if err != nil {
86                         return err
87                 }
88                 if tilelib.encoder != nil {
89                         err = tilelib.encoder.Encode(LibraryEntry{
90                                 TagSet: newtagset,
91                         })
92                         if err != nil {
93                                 return err
94                         }
95                 }
96         } else if tilelib.taglib.Len() != len(newtagset) {
97                 return fmt.Errorf("cannot merge libraries with differing tagsets")
98         } else {
99                 current := tilelib.taglib.Tags()
100                 for i := range newtagset {
101                         if !bytes.Equal(newtagset[i], current[i]) {
102                                 return fmt.Errorf("cannot merge libraries with differing tagsets")
103                         }
104                 }
105         }
106         return nil
107 }
108
109 func (tilelib *tileLibrary) loadTileVariants(tvs []TileVariant, variantmap map[tileLibRef]tileVariantID) error {
110         for _, tv := range tvs {
111                 // Assign a new variant ID (unique across all inputs)
112                 // for each input variant.
113                 variantmap[tileLibRef{Tag: tv.Tag, Variant: tv.Variant}] = tilelib.getRef(tv.Tag, tv.Sequence).Variant
114         }
115         return nil
116 }
117
118 func (tilelib *tileLibrary) loadCompactGenomes(cgs []CompactGenome, variantmap map[tileLibRef]tileVariantID, onLoadGenome func(CompactGenome)) error {
119         log.Debugf("loadCompactGenomes: %d", len(cgs))
120         var wg sync.WaitGroup
121         errs := make(chan error, 1)
122         for _, cg := range cgs {
123                 wg.Add(1)
124                 cg := cg
125                 go func() {
126                         defer wg.Done()
127                         for i, variant := range cg.Variants {
128                                 if len(errs) > 0 {
129                                         return
130                                 }
131                                 if variant == 0 {
132                                         continue
133                                 }
134                                 tag := tagID(i / 2)
135                                 newvariant, ok := variantmap[tileLibRef{Tag: tag, Variant: variant}]
136                                 if !ok {
137                                         err := fmt.Errorf("oops: genome %q has variant %d for tag %d, but that variant was not in its library", cg.Name, variant, tag)
138                                         select {
139                                         case errs <- err:
140                                         default:
141                                         }
142                                         return
143                                 }
144                                 log.Tracef("loadCompactGenomes: cg %s tag %d variant %d => %d", cg.Name, tag, variant, newvariant)
145                                 cg.Variants[i] = newvariant
146                         }
147                         if onLoadGenome != nil {
148                                 onLoadGenome(cg)
149                         }
150                         if tilelib.encoder != nil {
151                                 err := tilelib.encoder.Encode(LibraryEntry{
152                                         CompactGenomes: []CompactGenome{cg},
153                                 })
154                                 if err != nil {
155                                         select {
156                                         case errs <- err:
157                                         default:
158                                         }
159                                         return
160                                 }
161                         }
162                         if tilelib.compactGenomes != nil {
163                                 tilelib.mtx.Lock()
164                                 defer tilelib.mtx.Unlock()
165                                 tilelib.compactGenomes[cg.Name] = cg.Variants
166                         }
167                 }()
168         }
169         wg.Wait()
170         go close(errs)
171         return <-errs
172 }
173
174 func (tilelib *tileLibrary) loadCompactSequences(cseqs []CompactSequence, variantmap map[tileLibRef]tileVariantID) error {
175         log.Debugf("loadCompactSequences: %d", len(cseqs))
176         for _, cseq := range cseqs {
177                 for _, tseq := range cseq.TileSequences {
178                         for i, libref := range tseq {
179                                 if libref.Variant == 0 {
180                                         // No variant (e.g., import
181                                         // dropped tiles with
182                                         // no-calls) = no translation.
183                                         continue
184                                 }
185                                 v, ok := variantmap[libref]
186                                 if !ok {
187                                         return fmt.Errorf("oops: CompactSequence %q has variant %d for tag %d, but that variant was not in its library", cseq.Name, libref.Variant, libref.Tag)
188                                 }
189                                 tseq[i].Variant = v
190                         }
191                 }
192                 if tilelib.encoder != nil {
193                         if err := tilelib.encoder.Encode(LibraryEntry{
194                                 CompactSequences: []CompactSequence{cseq},
195                         }); err != nil {
196                                 return err
197                         }
198                 }
199         }
200         tilelib.mtx.Lock()
201         defer tilelib.mtx.Unlock()
202         if tilelib.refseqs == nil {
203                 tilelib.refseqs = map[string]map[string][]tileLibRef{}
204         }
205         for _, cseq := range cseqs {
206                 tilelib.refseqs[cseq.Name] = cseq.TileSequences
207         }
208         return nil
209 }
210
211 // Load library data from rdr. Tile variants might be renumbered in
212 // the process; in that case, genomes variants will be renumbered to
213 // match.
214 //
215 // If onLoadGenome is non-nil, call it on each CompactGenome entry.
216 func (tilelib *tileLibrary) LoadGob(ctx context.Context, rdr io.Reader, gz bool, onLoadGenome func(CompactGenome)) error {
217         cgs := []CompactGenome{}
218         cseqs := []CompactSequence{}
219         variantmap := map[tileLibRef]tileVariantID{}
220         err := DecodeLibrary(rdr, gz, func(ent *LibraryEntry) error {
221                 if ctx.Err() != nil {
222                         return ctx.Err()
223                 }
224                 if err := tilelib.loadTagSet(ent.TagSet); err != nil {
225                         return err
226                 }
227                 if err := tilelib.loadTileVariants(ent.TileVariants, variantmap); err != nil {
228                         return err
229                 }
230                 cgs = append(cgs, ent.CompactGenomes...)
231                 cseqs = append(cseqs, ent.CompactSequences...)
232                 return nil
233         })
234         if err != nil {
235                 return err
236         }
237         if ctx.Err() != nil {
238                 return ctx.Err()
239         }
240         err = tilelib.loadCompactGenomes(cgs, variantmap, onLoadGenome)
241         if err != nil {
242                 return err
243         }
244         err = tilelib.loadCompactSequences(cseqs, variantmap)
245         if err != nil {
246                 return err
247         }
248         return nil
249 }
250
251 func (tilelib *tileLibrary) dump(out io.Writer) {
252         printTV := func(tag int, variant tileVariantID) {
253                 if variant < 1 {
254                         fmt.Fprintf(out, " -")
255                 } else if tag >= len(tilelib.variant) {
256                         fmt.Fprintf(out, " (!tag=%d)", tag)
257                 } else if int(variant) > len(tilelib.variant[tag]) {
258                         fmt.Fprintf(out, " (tag=%d,!variant=%d)", tag, variant)
259                 } else {
260                         fmt.Fprintf(out, " %x", tilelib.variant[tag][variant-1][:8])
261                 }
262         }
263         for refname, refseqs := range tilelib.refseqs {
264                 for seqname, seq := range refseqs {
265                         fmt.Fprintf(out, "ref %s %s", refname, seqname)
266                         for _, libref := range seq {
267                                 printTV(int(libref.Tag), libref.Variant)
268                         }
269                         fmt.Fprintf(out, "\n")
270                 }
271         }
272         for name, cg := range tilelib.compactGenomes {
273                 fmt.Fprintf(out, "cg %s", name)
274                 for tag, variant := range cg {
275                         printTV(tag/2, variant)
276                 }
277                 fmt.Fprintf(out, "\n")
278         }
279 }
280
281 type importStats struct {
282         InputFile              string
283         InputLabel             string
284         InputLength            int
285         InputCoverage          int
286         PathLength             int
287         DroppedOutOfOrderTiles int
288 }
289
290 func (tilelib *tileLibrary) TileFasta(filelabel string, rdr io.Reader, matchChromosome *regexp.Regexp) (tileSeq, []importStats, error) {
291         ret := tileSeq{}
292         type jobT struct {
293                 label string
294                 fasta []byte
295         }
296         todo := make(chan jobT, 1)
297         scanner := bufio.NewScanner(rdr)
298         go func() {
299                 defer close(todo)
300                 var fasta []byte
301                 var seqlabel string
302                 for scanner.Scan() {
303                         buf := scanner.Bytes()
304                         if len(buf) > 0 && buf[0] == '>' {
305                                 todo <- jobT{seqlabel, append([]byte(nil), fasta...)}
306                                 seqlabel, fasta = strings.SplitN(string(buf[1:]), " ", 2)[0], fasta[:0]
307                                 log.Debugf("%s %s reading fasta", filelabel, seqlabel)
308                         } else {
309                                 fasta = append(fasta, bytes.ToLower(buf)...)
310                         }
311                 }
312                 todo <- jobT{seqlabel, fasta}
313         }()
314         type foundtag struct {
315                 pos   int
316                 tagid tagID
317         }
318         found := make([]foundtag, 2000000)
319         path := make([]tileLibRef, 2000000)
320         totalFoundTags := 0
321         totalPathLen := 0
322         skippedSequences := 0
323         taglen := tilelib.taglib.TagLen()
324         var stats []importStats
325         for job := range todo {
326                 if len(job.fasta) == 0 {
327                         continue
328                 } else if !matchChromosome.MatchString(job.label) {
329                         skippedSequences++
330                         continue
331                 }
332                 log.Debugf("%s %s tiling", filelabel, job.label)
333
334                 found = found[:0]
335                 tilelib.taglib.FindAll(job.fasta, func(tagid tagID, pos, taglen int) {
336                         found = append(found, foundtag{pos: pos, tagid: tagid})
337                 })
338                 totalFoundTags += len(found)
339                 if len(found) == 0 {
340                         log.Warnf("%s %s no tags found", filelabel, job.label)
341                 }
342
343                 skipped := 0
344                 if tilelib.skipOOO {
345                         log.Infof("%s %s keeping longest increasing subsequence", filelabel, job.label)
346                         keep := longestIncreasingSubsequence(len(found), func(i int) int { return int(found[i].tagid) })
347                         for i, x := range keep {
348                                 found[i] = found[x]
349                         }
350                         skipped = len(found) - len(keep)
351                         found = found[:len(keep)]
352                 }
353
354                 log.Infof("%s %s getting %d librefs", filelabel, job.label, len(found))
355                 throttle := &throttle{Max: runtime.NumCPU()}
356                 path = path[:len(found)]
357                 var lowquality int64
358                 for i, f := range found {
359                         i, f := i, f
360                         throttle.Acquire()
361                         go func() {
362                                 defer throttle.Release()
363                                 var startpos, endpos int
364                                 if i == 0 {
365                                         startpos = 0
366                                 } else {
367                                         startpos = f.pos
368                                 }
369                                 if i == len(found)-1 {
370                                         endpos = len(job.fasta)
371                                 } else {
372                                         endpos = found[i+1].pos + taglen
373                                 }
374                                 path[i] = tilelib.getRef(f.tagid, job.fasta[startpos:endpos])
375                                 if countBases(job.fasta[startpos:endpos]) != endpos-startpos {
376                                         atomic.AddInt64(&lowquality, 1)
377                                 }
378                         }()
379                 }
380                 throttle.Wait()
381
382                 log.Infof("%s %s copying path", filelabel, job.label)
383
384                 pathcopy := make([]tileLibRef, len(path))
385                 copy(pathcopy, path)
386                 ret[job.label] = pathcopy
387
388                 basesIn := countBases(job.fasta)
389                 log.Infof("%s %s fasta in %d coverage in %d path len %d low-quality %d skipped-out-of-order %d", filelabel, job.label, len(job.fasta), basesIn, len(path), lowquality, skipped)
390                 stats = append(stats, importStats{
391                         InputFile:              filelabel,
392                         InputLabel:             job.label,
393                         InputLength:            len(job.fasta),
394                         InputCoverage:          basesIn,
395                         PathLength:             len(path),
396                         DroppedOutOfOrderTiles: skipped,
397                 })
398
399                 totalPathLen += len(path)
400         }
401         log.Printf("%s tiled with total path len %d in %d sequences (skipped %d sequences that did not match chromosome regexp, skipped %d out-of-order tags)", filelabel, totalPathLen, len(ret), skippedSequences, totalFoundTags-totalPathLen)
402         return ret, stats, scanner.Err()
403 }
404
405 func (tilelib *tileLibrary) Len() int64 {
406         return atomic.LoadInt64(&tilelib.variants)
407 }
408
409 // Return a tileLibRef for a tile with the given tag and sequence,
410 // adding the sequence to the library if needed.
411 func (tilelib *tileLibrary) getRef(tag tagID, seq []byte) tileLibRef {
412         dropSeq := false
413         if !tilelib.retainNoCalls {
414                 for _, b := range seq {
415                         if b != 'a' && b != 'c' && b != 'g' && b != 't' {
416                                 dropSeq = true
417                                 break
418                         }
419                 }
420         }
421         seqhash := blake2b.Sum256(seq)
422         var vlock sync.Locker
423
424         tilelib.mtx.RLock()
425         if len(tilelib.vlock) > int(tag) {
426                 vlock = tilelib.vlock[tag]
427         }
428         tilelib.mtx.RUnlock()
429
430         if vlock != nil {
431                 vlock.Lock()
432                 for i, varhash := range tilelib.variant[tag] {
433                         if varhash == seqhash {
434                                 vlock.Unlock()
435                                 return tileLibRef{Tag: tag, Variant: tileVariantID(i + 1)}
436                         }
437                 }
438                 vlock.Unlock()
439         } else {
440                 tilelib.mtx.Lock()
441                 if tilelib.variant == nil && tilelib.taglib != nil {
442                         tilelib.variant = make([][][blake2b.Size256]byte, tilelib.taglib.Len())
443                         tilelib.vlock = make([]sync.Locker, tilelib.taglib.Len())
444                         for i := range tilelib.vlock {
445                                 tilelib.vlock[i] = new(sync.Mutex)
446                         }
447                 }
448                 if int(tag) >= len(tilelib.variant) {
449                         oldlen := len(tilelib.vlock)
450                         for i := 0; i < oldlen; i++ {
451                                 tilelib.vlock[i].Lock()
452                         }
453                         // If we haven't seen the tag library yet (as
454                         // in a merge), tilelib.taglib.Len() is
455                         // zero. We can still behave correctly, we
456                         // just need to expand the tilelib.variant and
457                         // tilelib.vlock slices as needed.
458                         if int(tag) >= cap(tilelib.variant) {
459                                 // Allocate 2x capacity.
460                                 newslice := make([][][blake2b.Size256]byte, int(tag)+1, (int(tag)+1)*2)
461                                 copy(newslice, tilelib.variant)
462                                 tilelib.variant = newslice[:int(tag)+1]
463                                 newvlock := make([]sync.Locker, int(tag)+1, (int(tag)+1)*2)
464                                 copy(newvlock, tilelib.vlock)
465                                 tilelib.vlock = newvlock[:int(tag)+1]
466                         } else {
467                                 // Use previously allocated capacity,
468                                 // avoiding copy.
469                                 tilelib.variant = tilelib.variant[:int(tag)+1]
470                                 tilelib.vlock = tilelib.vlock[:int(tag)+1]
471                         }
472                         for i := oldlen; i < len(tilelib.vlock); i++ {
473                                 tilelib.vlock[i] = new(sync.Mutex)
474                         }
475                         for i := 0; i < oldlen; i++ {
476                                 tilelib.vlock[i].Unlock()
477                         }
478                 }
479                 vlock = tilelib.vlock[tag]
480                 tilelib.mtx.Unlock()
481         }
482
483         vlock.Lock()
484         for i, varhash := range tilelib.variant[tag] {
485                 if varhash == seqhash {
486                         vlock.Unlock()
487                         return tileLibRef{Tag: tag, Variant: tileVariantID(i + 1)}
488                 }
489         }
490         atomic.AddInt64(&tilelib.variants, 1)
491         tilelib.variant[tag] = append(tilelib.variant[tag], seqhash)
492         variant := tileVariantID(len(tilelib.variant[tag]))
493         vlock.Unlock()
494
495         if tilelib.retainTileSequences && !dropSeq {
496                 tilelib.mtx.Lock()
497                 if tilelib.seq == nil {
498                         tilelib.seq = map[[blake2b.Size256]byte][]byte{}
499                 }
500                 tilelib.seq[seqhash] = append([]byte(nil), seq...)
501                 tilelib.mtx.Unlock()
502         }
503
504         if tilelib.encoder != nil {
505                 saveSeq := seq
506                 if dropSeq {
507                         // Save the hash, but not the sequence
508                         saveSeq = nil
509                 }
510                 tilelib.encoder.Encode(LibraryEntry{
511                         TileVariants: []TileVariant{{
512                                 Tag:      tag,
513                                 Variant:  variant,
514                                 Blake2b:  seqhash,
515                                 Sequence: saveSeq,
516                         }},
517                 })
518         }
519         return tileLibRef{Tag: tag, Variant: variant}
520 }
521
522 func (tilelib *tileLibrary) TileVariantSequence(libref tileLibRef) []byte {
523         if libref.Variant == 0 || len(tilelib.variant) <= int(libref.Tag) || len(tilelib.variant[libref.Tag]) < int(libref.Variant) {
524                 return nil
525         }
526         return tilelib.seq[tilelib.variant[libref.Tag][libref.Variant-1]]
527 }
528
529 // Tidy deletes unreferenced tile variants and renumbers variants so
530 // more common variants have smaller IDs.
531 func (tilelib *tileLibrary) Tidy() {
532         log.Print("Tidy: compute inref")
533         inref := map[tileLibRef]bool{}
534         for _, refseq := range tilelib.refseqs {
535                 for _, librefs := range refseq {
536                         for _, libref := range librefs {
537                                 inref[libref] = true
538                         }
539                 }
540         }
541         log.Print("Tidy: compute remap")
542         remap := make([][]tileVariantID, len(tilelib.variant))
543         throttle := throttle{Max: runtime.NumCPU() + 1}
544         for tag, oldvariants := range tilelib.variant {
545                 tag, oldvariants := tagID(tag), oldvariants
546                 if tag%1000000 == 0 {
547                         log.Printf("Tidy: tag %d", tag)
548                 }
549                 throttle.Acquire()
550                 go func() {
551                         defer throttle.Release()
552                         uses := make([]int, len(oldvariants))
553                         for _, cg := range tilelib.compactGenomes {
554                                 for phase := 0; phase < 2; phase++ {
555                                         cgi := int(tag)*2 + phase
556                                         if cgi < len(cg) && cg[cgi] > 0 {
557                                                 uses[cg[cgi]-1]++
558                                         }
559                                 }
560                         }
561
562                         // Compute desired order of variants:
563                         // neworder[x] == index in oldvariants that
564                         // should move to position x.
565                         neworder := make([]int, len(oldvariants))
566                         for i := range neworder {
567                                 neworder[i] = i
568                         }
569                         sort.Slice(neworder, func(i, j int) bool {
570                                 if cmp := uses[neworder[i]] - uses[neworder[j]]; cmp != 0 {
571                                         return cmp > 0
572                                 } else {
573                                         return bytes.Compare(oldvariants[neworder[i]][:], oldvariants[neworder[j]][:]) < 0
574                                 }
575                         })
576
577                         // Replace tilelib.variant[tag] with a new
578                         // re-ordered slice of hashes, and make a
579                         // mapping from old to new variant IDs.
580                         remaptag := make([]tileVariantID, len(oldvariants)+1)
581                         newvariants := make([][blake2b.Size256]byte, 0, len(neworder))
582                         for _, oldi := range neworder {
583                                 if uses[oldi] > 0 || inref[tileLibRef{Tag: tag, Variant: tileVariantID(oldi + 1)}] {
584                                         newvariants = append(newvariants, oldvariants[oldi])
585                                         remaptag[oldi+1] = tileVariantID(len(newvariants))
586                                 }
587                         }
588                         tilelib.variant[tag] = newvariants
589                         remap[tag] = remaptag
590                 }()
591         }
592         throttle.Wait()
593
594         // Apply remap to genomes and reference sequences, so they
595         // refer to the same tile variants using the changed IDs.
596         log.Print("Tidy: apply remap")
597         for _, cg := range tilelib.compactGenomes {
598                 for idx, variant := range cg {
599                         cg[idx] = remap[tagID(idx/2)][variant]
600                 }
601         }
602         for _, refcs := range tilelib.refseqs {
603                 for _, refseq := range refcs {
604                         for i, tv := range refseq {
605                                 refseq[i].Variant = remap[tv.Tag][tv.Variant]
606                         }
607                 }
608         }
609         log.Print("Tidy: done")
610 }
611
612 func countBases(seq []byte) int {
613         n := 0
614         for _, c := range seq {
615                 if isbase[c] {
616                         n++
617                 }
618         }
619         return n
620 }