introduction to high-throughput sequencing file formats · • extension of the fasta file format,...

45
Introduction to high-throughput sequencing file formats Daniel Vodák (Bioinformatics Core Facility, The Norwegian Radium Hospital) ( [email protected] )

Upload: others

Post on 11-Oct-2020

7 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Introduction to high-throughput sequencing file formats

Daniel Vodák (Bioinformatics Core Facility,

The Norwegian Radium Hospital) ( [email protected] )

Page 2: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

File formats

•  What is their purpose? –  Standardization – content and its structure

•  Easy automatization (HTS – large files) – need for compatibility, software interface

•  Saving work and time

•  Why the variability then? –  Need for effective storage of specific information (differences between

data-generating instruments, experiment types, stages of data processing and software tools)

–  Parallel development, competition  Need for (sometimes imperfect) conversions

2

Page 3: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Binary and “plain text” files •  “Plain text” (“flat”) file formats

•  Information often structured into lines and columns –  Human-readable, processable with simple command-line tools –  Space is often saved through the means of archiving (e.g. zip)

and human-readable information coding (e.g. flags) •  Knowledge of corresponding file format specifications can be

necessary for correct understanding of given file’s content •  Binary file formats

–  Not human-readable (not intended for reading) –  Require special software for processing (programs intended for

plain text processing will not work properly on them, e.g. wc, grep)

–  Efficient storage, (significant) reduction to file size when compared to a plain text counterpart (e.g. 75 % space saved)

3

Page 4: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Exercise 1 – first look

•  Compare the readability (command “head”) and sizes (command “ls -lh”) of files in directory /data/file_formats/data –  Plain text files:

•  *bed, *fasta, *fq and *sam

–  Archived/binary versions (the respective plain text files have identical content):

•  *bed.tar.bz2, *fasta.gz, *fq.tar.gz and *bam

4

Page 5: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Our file format menu •  FASTA

–  Simple collections of named DNA/protein sequences

•  FASTQ –  Extension of FASTA format, contains additional quality information –  Widely used for storing unaligned sequencing reads

•  SAM –  Alignments of sequencing reads to a reference (genome)

•  BED –  Region-based genome annotation information (e.g. a list of genes and

their genomic locations) –  Used for visualization or simple enumeration

5

Page 6: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTA format

•  Origin in 1980’s FASTP/FASTA software packages for sequence similarity searching

•  Convenient format for storing/transferring simple sequence collections –  Intended for both, nucleotide and protein sequences (FAST-

A, “Fast-All”) –  Common output format of sequence databases –  Input format for various tools

6

Page 7: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTA format

•  Each sequence entry consists of: –  a single line with sequence metadata, starting with the

“greater-than” symbol (“>”) –  any number of lines representing the actual sequence

7

Page 8: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTA format

•  Length of sequence-lines is usually limited to a certain number of characters

•  Details (e.g. acceptance of empty lines and allowed symbols for nucleotide/amino acid codes) can be application-specific

•  NCBI FASTA format: http://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml

8

Page 9: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Exercise 2 – FASTA file

•  Inspect file /data/file_formats/data/Uniprot_Mammalia.fasta (use command “less”, then browse with spacebar, quit with key “q”)

9

Page 10: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTQ format

•  Extension of the FASTA file format, intended for storing sequences together with related quality information

•  Typical NGS data file format at the beginning of a bioinformatics analysis –  Final output of sequencing –  Common way of storing unprocessed sequence data

10

Page 11: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTQ format •  Each sequence entry usually consists of exactly 4 lines

-  Line 1: The “at” sign (“@”), followed by a sequence identifier and optional description information

-  Line 2: The sequence itself -  Line 3: The “plus” symbol (“+”), optionally followed by repetition of first

line’s information -  Line 4: Sequence quality information – each sequence symbol is matched by

exactly one corresponding quality symbol

11

Page 12: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTQ format •  Several incompatible versions of the format

–  Different means of computing and/or recording the quality information

•  We will focus on the newest version (Illumina 1.8+) •  Detailed version overview and up to date information available

on Wikipedia –  ( http://en.wikipedia.org/wiki/FASTQ_format )

•  History of the “unfortunate developments” was well captured in an article by Peter J. A. Cock et al. –  ( The Sanger FASTQ file format … variants )

12

Page 13: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTQ format – Base qualities •  PHRED Base quality (Q) – integer value derived from the

estimated probability (P) of the corresponding base being determined wrong –  Q = -10*log10(P) (rounded to nearest integer)

•  P might be computed in different ways, depending on the sequencing platform, but the meaning of Q remains the same

•  Q = 0 ~ P = 100 = 1 •  Q = 10 ~ P = 10-1 = 0.1 •  Q = 20 ~ P = 10-2 = 0.01 •  Q = 40 ~ P = 10-4 = 0.0001

13

Page 14: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

FASTQ format – Base qualities •  A single-character notation of the quality values is more

efficient/convenient than recording the actual numbers –  Lengths of the sequence record and its base quality record match –  Individual integer values are represented by corresponding characters

from the ASCII code table, offset of 33 ensures that only visible characters are used

•  Q = 0 ~ P = 100 = 1 (ASCII [33 + 0] = “!”) •  Q = 10 ~ P = 10-1 = 0.1 (ASCII [33 + 10] = “+”) •  Q = 20 ~ P = 10-2 = 0.01 (ASCII [33 + 20] = “5”) •  Q = 40 ~ P = 10-4 = 0.0001 (ASCII [33 + 40] = “I”)

–  Some of the older FASTQ format versions used offset of 64 instead

14

Page 15: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

The ASCII code table

15

Page 16: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Exercise 3 – FASTQ file

•  Inspect file /data/file_formats/data/NKTCL_31T_1M_R1.fq (use command “less”, then browse with spacebar, quit with key “q”)

16

Page 17: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

The Sequence Alignment/Map format (SAM)

•  Intended for storing read alignments against reference sequences –  Widely used for that purpose (e.g. in expression analysis and variant

calling)

•  Has a binary version with good software support (BAM format)

•  Full latest format specification available on-line: http://samtools.sourceforge.net/SAM1.pdf

•  Samtools – a set of useful programs for manipulating files in SAM/BAM format: http://samtools.sourceforge.net

17

Page 18: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – structure

•  Two sections –  Header section – meta-data, general information about the

file’s origin and content –  Alignment section – detailed information about the

individual read-alignments

18

Page 19: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – header section •  Meta-information about the used reference genome and alignment

software, about the sequencing reads, etc. •  The header section is optional

–  If present, it has to be at the beginning of the file –  In practice, usually required

•  All header lines begin with a special symbol (“@”) for easy identification

•  Example: @HD VN:1.0 SO:unsorted @PG ID:novoalign VN:V2.07.13 CL:novoalign -o SAM … @SQ SN:chr10 AS:hg18.nix LN:135374737 …

19

Page 20: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section •  1 alignment per line, tab-delimited value fields

-  11 mandatory fields •  All must be present, and in given order, for each alignment

-  Variable number of optional fields (optional fields can be sequencing platform-specific or aligner-specific)

•  Terminology –  Template – DNA/RNA molecule which was subjected to sequencing –  Segment – part of the template which was “read” by a sequencing

machine (represented by a “sequencing read”)

20

Page 21: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Value types and ranges for each field –  “0” or “*” for unknown/unavailable values –  Are all (visible) characters allowed in the QNAME field?

21

Page 22: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

22

Page 23: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

23

Page 24: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – bitwise FLAG •  FLAG: An integer ~ a sum of values ~ a set of statements that are true for

given alignment –  “Bitwise” – values contributing to the sum are powers of two (each can be

represented by a single positive bit in a binary number) –  Unambiguous – there is exactly one possible decomposition of each FLAG sum –  Each value contributing to the sum represents one fulfilled condition

24

Page 25: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – bitwise FLAG (example)

•  FLAG 83: –  In binary numbers:

•  FLAG 1010011 is a sum of 1000000, 10000, 10 and 1 •  Easy to break down, but binary numbers are long

–  In decimal numbers: •  FLAG 83 is a sum of 64, 16, 2 and 1

–  83 = 64 + 19 = 64 + (16 + 3) = 64 + 16 + (2 + 1)

•  What does FLAG 83 mean?

25

Page 26: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

26

Page 27: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

27

Page 28: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Templates and segments •  Template – DNA/RNA molecule which was subjected to

sequencing –  “Insert size” = template length

•  Segment – part of the template which was “read” by a sequencing machine (represented by a “sequencing read”)

28

Page 29: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

29

Page 30: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – Mapping qualities •  PHRED Mapping quality (Q) – value derived from the estimated

probability (P) of the reported alignment being determined wrong –  Q = -10*log10(P) (rounded to nearest integer)

•  P might be computed in different ways, depending on the aligner, but the meaning of Q always remains the same –  Q = 40 ~ P = 10-4 = 0.0001 –  Q = 20 ~ P = 10-2 = 0.01 –  Q = 10 ~ P = 10-1 = 0.1 –  Q = 0 ~ P = 100 = 1

•  Very high Q-values (=> 70) can be commonly observed when a long pair-end read aligns only to a single location in a large genome -  Multiple alignments of the same read/segment lead to steep drop in

mapping quality

30

Page 31: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

31

Page 32: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – CIGAR string •  CIGAR string summarizes how was given read aligned to the reference sequence

–  Sequence mismatches (X) and sequence matches (=) usually grouped into alignment matches (M)

–  Overview of insertions (I) and deletions (D) –  Indication of problematic read-ends (low quality and/or not matching the reference) –

soft (S) and hard (H) clipping (disregarding) of such ends –  Implied intron regions (N) in case of mRNA sequencing –  E.g. “44M2I50M4S”

32

Page 33: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

33

Page 34: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

34

Page 35: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

35

Page 36: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

36

Page 37: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – alignment section Mandatory fields overview

•  Example alignment: !SRR494504.357 "163 "chr10 "76761990 "150 "74M "= "76762030 !117" "AGGCTGCAGAGTAAATATTCCACTTTCCCCACTTACAGGCCCCACAAACAAGCCTCAGAAATGTGTTTCGAGGG !

" "IIIHIIIGGGGGEIIIIIIIIIIIIIIIIIIIIIIIHIIIIIHGIHBHIICFIGGGGFBDBEEBEFB77+55=? !PG:Z:novoalign"AS:i:70 "UQ:i:70 "NM:i:1 "MD:Z:68G5"PQ:i:70 "SM:i:150 "AM:i:150

37

Page 38: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

SAM – Optional fields •  Different alignments from the same SAM file can have

varying sets of optional fields –  Each optional field includes its own identifier

•  Some are defined in the SAM format specification –  MD:Z – mismatching positions –  NM:i – edit distance to the reference

•  Example: MD:Z:68G5 NM:i:1 (CIGAR: 74M)

•  Some are defined by individual aligners –  ZH:i – miRNA hairpin alignment score (Novoalign) –  XO:i – number of gap openings in the alignment (BWA)

38

Page 39: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Exercise 4 – SAM file

•  Inspect file /data/file_formats/data/NKTCL_31T_1M.sam (use command “less”, then browse with spacebar, quit with key “q”)

39

Page 40: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

BED format •  List of genomic regions

–  Each region is specified by a reference sequence and the start and end positions on it

•  Optionally, each region can have additional properties defined –  E.g. strand, name, score, color

•  Intended for visualizing genomic annotations in UCSC Genome Browser (context of expression, regulation, variation, conservation, …)

•  Format specification available online: http://genome.ucsc.edu/FAQ/FAQformat.html#format1

•  BEDtools – a set of useful programs for manipulating files in BED format: http://code.google.com/p/bedtools/

40

Page 41: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

BED file viewed in the Genome Browser

chr6 146264871 146264948 SRR494504.168/1 150 - chr6 146264864 146264938 SRR494504.168/2 150 + …

41

Page 42: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

BED format – mandatory fields •  “Track lines” instead of header lines

–  Display configuration for UCSC GB (not as useful outside of the GB)

•  3 mandatory fields (must be in correct order) –  “chrom” – the reference sequence –  “chromStart” – the first base of the region with respect to the reference

sequence (counting starts from 0) –  “chromEnd” – the first base after the region with respect to the

reference sequence •  [chromStart, chromEnd) allows easy region-length calculation •  Example: chr1 7 8 •  Important to remember when working with very small regions and/or when

the exact position matters (point mutations)

42

Page 43: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

BED format – optional fields •  9 additional optional fields, their order is binding (unlike with SAM

format) –  if n optional fields are included, they will be considered to be the first n

optional fields from the format specification •  All regions must have the same optional fields (unlike with SAM format) •  Most important optional fields:

–  “name” – name of the region –  “score” – score value between 0 and 1000 (read-count, transformed p-value,

“quality”, …) •  Can be interpreted as shades of grey during visualization

–  “strand” – either “+” or “-” (not “1”/”-1”)

43

Page 44: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

BED format – “pseudoBED” files

•  Information captured in BED’s mandatory fields is essential for many applications/analysis types, however, additional custom information (not fitting into the BED format specification) is often required

•  Other file formats might resemble the BED format while not being compatible –  Be careful when creating and interpreting BED-like files –  Be especially careful when it comes to regions’ genomic

positions

44

Page 45: Introduction to high-throughput sequencing file formats · • Extension of the FASTA file format, intended for storing sequences together with related quality information • Typical

Exercise 5 – BED file

•  Inspect file /data/file_formats/data/NKTCL_31T_1M.bed (use command “less”, then browse with spacebar, quit with key “q”)

45