A tool for performing various IntervalList manipulations
@HD VN:1.0 @SQ SN:chr1 LN:501 @SQ SN:chr2 LN:401 chr1 1 100 + starts at the first base of the contig and covers 100 bases chr2 100 100 + interval with exactly one base
java -jar picard.jar IntervalListTools \ ACTION=CONCAT \ I=input.interval_list \ I=input_2.interval_list \ O=new.interval_list
java -jar picard.jar IntervalListTools \ ACTION=CONCAT \ SORT=true \ UNIQUE=true \ I=input.interval_list \ I=input_2.interval_list \ O=new.interval_list
java -jar picard.jar IntervalListTools \ ACTION=SUBTRACT \ I=input.interval_list \ SI=input_2.interval_list \ O=new.interval_list
java -jar picard.jar IntervalListTools \ ACTION=INTERSECT \ I=input1.interval_list \ I=input2.interval_list \ SI=input3.interval_list \ O=new.interval_list
\@HD VN:1.0 \@SQ SN:chr1 LN:501 \@SQ SN:chr2 LN:401 chr1 1 100 + starts at the first base of the contig and covers 100 bases chr2 100 100 + interval with exactly one base
java -jar picard.jar IntervalListTools \\ ACTION=CONCAT \\ I=input.interval_list \\ I=input_2.interval_list \\ O=new.interval_list
java -jar picard.jar IntervalListTools \\ ACTION=CONCAT \\ SORT=true \\ UNIQUE=true \\ I=input.interval_list \\ I=input_2.interval_list \\ O=new.interval_list
java -jar picard.jar IntervalListTools \\ ACTION=SUBTRACT \\ I=input.interval_list \\ SI=input_2.interval_list \\ O=new.interval_list
java -jar picard.jar IntervalListTools \\ ACTION=INTERSECT \\ I=input1.interval_list \\ I=input2.interval_list \\ SI=input3.interval_list \\ O=new.interval_list
This table summarizes the command-line arguments that are specific to this tool. For more details on each argument, see the list further down below the table or click on an argument name to jump directly to that entry in the list.
Argument name(s) | Default value | Summary | |
---|---|---|---|
Required Arguments | |||
--INPUT -I |
[] | One or more interval lists. If multiple interval lists are provided the output is theresult of merging the inputs. Supported formats are interval_list and VCF. | |
Optional Tool Arguments | |||
--ACTION |
CONCAT | Action to take on inputs. | |
--arguments_file |
[] | read one or more arguments files and add them to the command line | |
--BREAK_BANDS_AT_MULTIPLES_OF -BRK |
0 | If set to a positive value will create a new interval list with the original intervals broken up at integer multiples of this value. Set to 0 to NOT break up intervals. | |
--COMMENT |
[] | One or more lines of comment to add to the header of the output file (as @CO lines in the SAM header). | |
--help -h |
false | display the help message | |
--INCLUDE_FILTERED |
false | Whether to include filtered variants in the vcf when generating an interval list from vcf. | |
--INVERT |
false | Produce the inverse list of intervals, that is, the regions in the genome that are not covered by any of the input intervals. Will merge abutting intervals first. Output will be sorted. |
|
--OUTPUT -O |
null | The output interval list file to write (if SCATTER_COUNT == 1) or the directory into which to write the scattered interval sub-directories (if SCATTER_COUNT > 1). | |
--PADDING |
0 | The amount to pad each end of the intervals by before other operations are undertaken. Negative numbers are allowed and indicate intervals should be shrunk. Resulting intervals < 0 bases long will be removed. Padding is applied to the interval lists (both INPUT and SECOND_INPUT, if provided) before the ACTION is performed. | |
--SCATTER_COUNT |
1 | The number of files into which to scatter the resulting list by locus; in some situations, fewer intervals may be emitted. Note - if > 1, the resultant scattered intervals will be sorted and uniqued. The sort will be inverted if the INVERT flag is set. | |
--SECOND_INPUT -SI |
[] | Second set of intervals for SUBTRACT and DIFFERENCE operations. | |
--SORT |
true | If true, sort the resulting interval list by coordinate. | |
--SUBDIVISION_MODE -M |
INTERVAL_SUBDIVISION | Selects between various ways in which scattering of the interval-list can happen. | |
--UNIQUE |
false | If true, merge overlapping and adjacent intervals to create a list of unique intervals. Implies SORT=true. | |
--version |
false | display the version number for this tool | |
Optional Common Arguments | |||
--COMPRESSION_LEVEL |
5 | Compression level for all compressed files created (e.g. BAM and VCF). | |
--CREATE_INDEX |
false | Whether to create a BAM index when writing a coordinate-sorted BAM file. | |
--CREATE_MD5_FILE |
false | Whether to create an MD5 digest for any BAM or FASTQ files created. | |
--GA4GH_CLIENT_SECRETS |
client_secrets.json | Google Genomics API client_secrets.json file path. | |
--MAX_RECORDS_IN_RAM |
500000 | When writing files that need to be sorted, this will specify the number of records stored in RAM before spilling to disk. Increasing this number reduces the number of file handles needed to sort the file, and increases the amount of RAM needed. | |
--QUIET |
false | Whether to suppress job-summary info on System.err. | |
--REFERENCE_SEQUENCE -R |
null | Reference sequence file. | |
--TMP_DIR |
[] | One or more directories with space available to be used by this program for temporary storage of working files | |
--USE_JDK_DEFLATER -use_jdk_deflater |
false | Use the JDK Deflater instead of the Intel Deflater for writing compressed output | |
--USE_JDK_INFLATER -use_jdk_inflater |
false | Use the JDK Inflater instead of the Intel Inflater for reading compressed input | |
--VALIDATION_STRINGENCY |
STRICT | Validation stringency for all SAM files read by this program. Setting stringency to SILENT can improve performance when processing a BAM file in which variable-length data (read, qualities, tags) do not otherwise need to be decoded. | |
--VERBOSITY |
INFO | Control verbosity of logging. | |
Advanced Arguments | |||
--showHidden |
false | display hidden arguments |
Arguments in this list are specific to this tool. Keep in mind that other arguments are available that are shared with other tools (e.g. command-line GATK arguments); see Inherited arguments above.
Action to take on inputs.
The --ACTION argument is an enumerated type (Action), which can have one of the following values:
Action CONCAT
read one or more arguments files and add them to the command line
List[File] []
If set to a positive value will create a new interval list with the original intervals broken up at integer multiples of this value. Set to 0 to NOT break up intervals.
int 0 [ [ -∞ ∞ ] ]
One or more lines of comment to add to the header of the output file (as @CO lines in the SAM header).
List[String] []
Compression level for all compressed files created (e.g. BAM and VCF).
int 5 [ [ -∞ ∞ ] ]
Whether to create a BAM index when writing a coordinate-sorted BAM file.
Boolean false
Whether to create an MD5 digest for any BAM or FASTQ files created.
boolean false
Google Genomics API client_secrets.json file path.
String client_secrets.json
display the help message
boolean false
Whether to include filtered variants in the vcf when generating an interval list from vcf.
boolean false
One or more interval lists. If multiple interval lists are provided the output is theresult of merging the inputs. Supported formats are interval_list and VCF.
R List[File] []
Produce the inverse list of intervals, that is, the regions in the genome that are
not covered by any of the input intervals. Will merge abutting intervals first. Output will be sorted.
boolean false
When writing files that need to be sorted, this will specify the number of records stored in RAM before spilling to disk. Increasing this number reduces the number of file handles needed to sort the file, and increases the amount of RAM needed.
Integer 500000 [ [ -∞ ∞ ] ]
The output interval list file to write (if SCATTER_COUNT == 1) or the directory into which to write the scattered interval sub-directories (if SCATTER_COUNT > 1).
File null
The amount to pad each end of the intervals by before other operations are undertaken. Negative numbers are allowed and indicate intervals should be shrunk. Resulting intervals < 0 bases long will be removed. Padding is applied to the interval lists (both INPUT and SECOND_INPUT, if provided) before the ACTION is performed.
int 0 [ [ -∞ ∞ ] ]
Whether to suppress job-summary info on System.err.
Boolean false
Reference sequence file.
File null
The number of files into which to scatter the resulting list by locus; in some situations, fewer intervals may be emitted. Note - if > 1, the resultant scattered intervals will be sorted and uniqued. The sort will be inverted if the INVERT flag is set.
int 1 [ [ -∞ ∞ ] ]
Second set of intervals for SUBTRACT and DIFFERENCE operations.
List[File] []
display hidden arguments
boolean false
If true, sort the resulting interval list by coordinate.
boolean true
Selects between various ways in which scattering of the interval-list can happen.
The --SUBDIVISION_MODE argument is an enumerated type (Mode), which can have one of the following values:
Mode INTERVAL_SUBDIVISION
One or more directories with space available to be used by this program for temporary storage of working files
List[File] []
If true, merge overlapping and adjacent intervals to create a list of unique intervals. Implies SORT=true.
boolean false
Use the JDK Deflater instead of the Intel Deflater for writing compressed output
Boolean false
Use the JDK Inflater instead of the Intel Inflater for reading compressed input
Boolean false
Validation stringency for all SAM files read by this program. Setting stringency to SILENT can improve performance when processing a BAM file in which variable-length data (read, qualities, tags) do not otherwise need to be decoded.
The --VALIDATION_STRINGENCY argument is an enumerated type (ValidationStringency), which can have one of the following values:
ValidationStringency STRICT
Control verbosity of logging.
The --VERBOSITY argument is an enumerated type (LogLevel), which can have one of the following values:
LogLevel INFO
display the version number for this tool
boolean false
See also General Documentation | Tool Docs Index Tool Documentation Index | Support Forum
GATK version 4.0.11.0 built at 23-11-2018 02:11:49.