#include <vector>
#include "robin_hood.h"
#include "utils.h"
Go to the source code of this file.
◆ BUFSIZE
#define BUFSIZE 134217728 |
◆ BarcodesIndex
◆ indexBarcodesFromFastq()
BarcodesIndex indexBarcodesFromFastq |
( |
string |
fastqFile, |
|
|
unsigned |
nbThreads = 1 |
|
) |
| |
Index the offsets of the barcodes contained in a given fastq file.
- Parameters
-
fastqFile | fastq file to build the index from |
nbThreads | number of threads to use, set to 1 by default |
- Exceptions
-
ios_base::failure | thrown if fastqFile could not be open |
- Returns
- the barcode index associating barcodes to the set of offsets they occur at
◆ indexBarcodesFromFastqGz()
BarcodesIndex indexBarcodesFromFastqGz |
( |
string |
fastqFile, |
|
|
unsigned |
nbThreads = 1 |
|
) |
| |
Index the offsets of the barcodes contained in a given gzipped fastq file.
- Parameters
-
fastqFile | gzipped fastq file to build the index from |
nbThreads | number of threads to use, set to 1 by default |
- Exceptions
-
ios_base::failure | thrown if fastqFile could not be open |
- Returns
- the barcode index associating barcodes to the set of offsets they occur at
◆ loadBarcodesIndex()
Load the barcode index stored in a given file.
- Parameters
-
file | file where the barcode index is stored |
- Exceptions
-
ios_base::failure | thrown if file could not be open |
- Returns
- the barcode index filled with the data contained in the file
◆ saveBarcodesIndex()
Save the content of the barcode index in a given file.
- Parameters
-
index | barcode offsets index to save |
- Exceptions
-
ios_base::failure | thrown if file could not be open |
- Parameters
-
file | file where to store the index |