public class ExtractIlluminaBarcodes extends CommandLineProgram
Modifier and Type | Class and Description |
---|---|
static class |
ExtractIlluminaBarcodes.BarcodeMetric
Metrics produced by the ExtractIlluminaBarcodes program that is used to parse data in
the basecalls directory and determine to which barcode each read should be assigned.
|
Modifier and Type | Field and Description |
---|---|
List<String> |
BARCODE |
File |
BARCODE_FILE |
File |
BASECALLS_DIR |
boolean |
COMPRESS_OUTPUTS |
Integer |
LANE |
int |
MAX_MISMATCHES |
int |
MAX_NO_CALLS |
File |
METRICS_FILE |
int |
MIN_MISMATCH_DELTA |
int |
MINIMUM_BASE_QUALITY |
int |
MINIMUM_QUALITY |
int |
NUM_PROCESSORS |
File |
OUTPUT_DIR |
String |
READ_STRUCTURE |
COMPRESSION_LEVEL, CREATE_INDEX, CREATE_MD5_FILE, GA4GH_CLIENT_SECRETS, MAX_RECORDS_IN_RAM, QUIET, REFERENCE_SEQUENCE, TMP_DIR, VALIDATION_STRINGENCY, VERBOSITY
Constructor and Description |
---|
ExtractIlluminaBarcodes() |
Modifier and Type | Method and Description |
---|---|
protected String[] |
customCommandLineValidation()
Validate that POSITION >= 1, and that all BARCODEs are the same length and unique
|
protected int |
doWork()
Do the work after command line has been parsed.
|
static void |
main(String[] argv) |
getCommandLine, getCommandLineParser, getDefaultHeaders, getMetricsFile, getNestedOptions, getNestedOptionsForHelp, getStandardUsagePreamble, getVersion, instanceMain, instanceMainWithExit, parseArgs, setDefaultHeaders
@Option(doc="The Illumina basecalls directory. ", shortName="B") public File BASECALLS_DIR
@Option(doc="Where to write _barcode.txt files. By default, these are written to BASECALLS_DIR.", optional=true) public File OUTPUT_DIR
@Option(doc="A description of the logical structure of clusters in an Illumina Run, i.e. a description of the structure IlluminaBasecallsToSam assumes the data to be in. It should consist of integer/character pairs describing the number of cycles and the type of those cycles (B for Barcode, T for Template, and S for skip). E.g. If the input data consists of 80 base clusters and we provide a read structure of \"36T8B8S28T\" then, before being converted to SAM records those bases will be split into 4 reads where read one consists of 36 cycles of template, read two consists of 8 cycles of barcode, read three will be an 8 base read of skipped cycles and read four is another 28 cycle template read. The read consisting of skipped cycles would NOT be included in output SAM/BAM file read groups.", shortName="RS") public String READ_STRUCTURE
@Option(doc="Barcode sequence. These must be unique, and all the same length. This cannot be used with reads that have more than one barcode; use BARCODE_FILE in that case. ", mutex="BARCODE_FILE") public List<String> BARCODE
@Option(doc="Tab-delimited file of barcode sequences, barcode name and, optionally, library name. Barcodes must be unique and all the same length. Column headers must be \'barcode_sequence_1\', \'barcode_sequence_2\' (optional), \'barcode_name\', and \'library_name\'.", mutex="BARCODE") public File BARCODE_FILE
@Option(doc="Per-barcode and per-lane metrics written to this file.", shortName="M") public File METRICS_FILE
@Option(doc="Maximum mismatches for a barcode to be considered a match.") public int MAX_MISMATCHES
@Option(doc="Minimum difference between number of mismatches in the best and second best barcodes for a barcode to be considered a match.") public int MIN_MISMATCH_DELTA
@Option(doc="Maximum allowable number of no-calls in a barcode read before it is considered unmatchable.") public int MAX_NO_CALLS
@Option(shortName="Q", doc="Minimum base quality. Any barcode bases falling below this quality will be considered a mismatch even in the bases match.") public int MINIMUM_BASE_QUALITY
@Option(doc="The minimum quality (after transforming 0s to 1s) expected from reads. If qualities are lower than this value, an error is thrown.The default of 2 is what the Illumina\'s spec describes as the minimum, but in practice the value has been observed lower.") public int MINIMUM_QUALITY
@Option(shortName="GZIP", doc="Compress output s_l_t_barcode.txt files using gzip and append a .gz extension to the file names.") public boolean COMPRESS_OUTPUTS
@Option(doc="Run this many PerTileBarcodeExtractors in parallel. If NUM_PROCESSORS = 0, number of cores is automatically set to the number of cores available on the machine. If NUM_PROCESSORS < 0 then the number of cores used will be the number available on the machine less NUM_PROCESSORS.") public int NUM_PROCESSORS
protected int doWork()
CommandLineProgram
doWork
in class CommandLineProgram
protected String[] customCommandLineValidation()
customCommandLineValidation
in class CommandLineProgram
public static void main(String[] argv)