Category

Sam/Bam Manipulation


Usage

java -jar picard.jar CollectInsertSizeMetrics I=input.bam O=insert_size_metrics.txt H=insert_size_histogram.pdf M=0.5


Manual

HISTOGRAM_FILE (File)    File to write insert size Histogram chart to. Required.
DEVIATIONS (Double)    Generate mean, sd and plots by trimming the data down to MEDIAN + DEVIATIONS*MEDIAN_ABSOLUTE_DEVIATION. This is done because insert size data typically includes enough anomalous values from chimeras and other artifacts to make the mean and sd grossly misleading regarding the real distribution. Default value: 10.0. This option can be set to 'null' to clear the default value.
HISTOGRAM_WIDTH (Integer)    Explicitly sets the Histogram width, overriding automatic truncation of Histogram tail. Also, when calculating mean and standard deviation, only bins
MINIMUM_PCT (Float)    When generating the Histogram, discard any data categories (out of FR, TANDEM, RF) that have fewer than this percentage of overall reads. (Range: 0 to 1). Default value: 0.05. This option can be set to 'null' to clear the default value.
METRIC_ACCUMULATION_LEVEL (MetricAccumulationLevel)    The level(s) at which to accumulate metrics. Default value: [ALL_READS]. This option can be set to 'null' to clear the default value. Possible values: {ALL_READS, SAMPLE, LIBRARY, READ_GROUP} This option may be specified 0 or more times. This option can be set to 'null' to clear the default list.
INCLUDE_DUPLICATES (Boolean)    If true, also include reads marked as duplicates in the insert size histogram. Default value: false. This option can be set to 'null' to clear the default value. Possible values: {true, false}
INPUT (File)    Input SAM or BAM file. Required.
OUTPUT (File)    File to write the output to. Required.
ASSUME_SORTED (Boolean)    If true (default), then the sort order in the header file will be ignored. Default value: true. This option can be set to 'null' to clear the default value. Possible values: {true, false}
STOP_AFTER (Long)    Stop after processing N reads, mainly for debugging. Default value: 0. This option can be set to 'null' to clear the default value.


Share your experience or ask a question