File: constants.d

package info (click to toggle)
sambamba 1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,528 kB
  • sloc: sh: 220; python: 166; ruby: 147; makefile: 103
file content (11 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
module bio.std.experimental.hts.constants;

alias ulong size_d;
alias int RefId;      // -1 is invalid FIXME
alias uint GenomePos; // 32-bits, do check when reading!
alias ubyte MappingQuality; // 255 is invalid FIXME

struct GenomeLocation {
  RefId ref_id;
  GenomePos pos;
}