RNA

Spliced Transcripts Alignment to a Reference

QUICK START

Copy
Copied!
            

$ pbrun rna_fq2bam --in-fq sample_X_1.fq.gz sample_X_2.fq.gz --genome-lib-dir HG38 --output-dir sample_X/


COMPATIBLE CPU COMMAND

The command below is the CPU counterpart of the Parabricks command above. The output from these commands will generate the exact same results as the output from the above command.

Copy
Copied!
            

#STAR Alignment $ ./STAR --genomeDir HG38 --readFilesIn sample_X_1.fq.gz sample_X_2.fq.gz --outFileNamePrefix sample_X/ --outSAMtype BAM SortedByCoordinate #Coordinate Sorting $ gatk SortSam --java-options -Xmx30g --MAX_RECORDS_IN_RAM=5000000 -I=Aligned.sortedByCoord.out.bam \ -O=cpu.bam --SORT_ORDER=coordinate --TMP_DIR=/raid/myrun # Mark Duplicates $ gatk MarkDuplicates --java-options -Xmx30g -I=cpu.bam -O=mark_dups_cpu.bam \ -M=metrics.txt --TMP_DIR=/raid/myrun


OPTIONS

--ref REF

(required) Path to the reference file

--genome-lib-dir

(required) Path to a genome resource library directory. We assume that the indexing required to run star has been completed by the user. (default: None)

--output-dir

(required) Path to the directory that will contain all of the generated files (default: None)

--out-bam

(required) Path of output BAM file (default: None)

--in-fq

Pair ended fastq files. These can be in .fastq or .fastq.gz format. You can provide read group information as an optional third argument.

Example 1:

--in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz

Example 2:

--in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1"

This option can be repeated multiple times as well.

Example 1:

--in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz --in-fq sampleX_2_1.fastq.gz sampleX_2_2.fastq.gz

Example 2:

--in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1" \

--in-fq sampleX_2_1.fastq.gz sampleX_2_2.fastq.gz "@RG\tID:foo2\tLB:lib1\tPL:bar\tSM:sample\tPU:unit2"

Either all sets of inputs have read group or none should have it and will be automatically added by the pipeline. For same sample, Read Groups should have same sample name (SM) and different ID and PU.

--in-se-fq

Single ended fastq files. These can be in .fastq or .fastq.gz format. You can provide read group information as an optional third argument.

Example 1:

--in-se-fq sampleX.fastq.gz

Example 2:

--in-se-fq sampleX.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1"

This option can be repeated multiple times as well.

Example 1:

--in-se-fq sampleX_1.fastq.gz --in-se-fq sampleX_2.fastq.gz

Example 2:

--in-se-fq sampleX_1.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1" \

--in-se-fq sampleX_2.fastq.gz "@RG\tID:foo2\tLB:lib1\tPL:bar\tSM:sample\tPU:unit2"

Either all sets of inputs have read group or none should have it and will be automatically added by the pipeline. For the same sample, Read Groups should have the same sample name (SM) and different ID and PU.

--read-group-sm

SM tag for read groups in this run (default: None)

--read-group-lb

LB tag for read groups in this run (default: None)

--read-group-pl

PL tag for read groups in this run (default: None)

--read-group-id-prefix

prefix for ID and PU tag for read groups in this run. This prefix will be used for all pair of fastq files in this run. The ID and PU tag will consist of this prefix and an identifier which will be unique

--two-pass-mode

2-pass mapping mode. The string can be “None” for 1-pass mapping or “Basic” for basic 2-pass mapping with all 1st pass junctions inserted into the genome indices on the fly (default: None)

--num-sa-bases

Length (bases) of the SA pre-indexing string. Longer strings will use much more memory, but allow for faster searches. A value between 10 and 15 is recommended. For small genomes, the parameter must be scaled down to min(14, log2(GenomeLength)/2 - 1) (default: 14)

--max-intron-size

Maximum align intron size. If this value is 0, the maximum size will be determined by (2^winBinNbits)*winAnchorDistNbins (default: 0)

--min-intron-size

Minimum align intron size. Genomic gap is considered intron if its length is greater than or equal to this value, otherwise it is considered Deletion (default: 21)

--min-match-filter

Minimum number of matched bases required for alignment output (default: 0)

--min-match-filter-normalized

Same as –min-match-filter, but normalized to the read length (sum of mates’ lengths for paired-end reads) (default: 0.66)

--out-filter-intron-motifs

Type of filter alignment using their motifs. This string can be “None” for no filtering, “RemoveNoncanonical” for filtering out alignments that contain non-canonical junctions, or “RemoveNoncanonicalUnannotated” for filtering out alignments that contain non-canonical unannotated junctions when using annotated splice junctions database. The annotated non-canonical junctions will be kept (default: None)

--max-out-filter-mismatch

Maximum number of mismatches allowed for an alignment to be output (default: 10)

--max-out-filter-mismatch-ratio

Maximum ratio of mismatches to mapped length allowed for an alignment to be output (default: 0.3)

--max-out-filter-multimap

Maximum number of loci the read is allowed to map to for all alignments to be output. Otherwise, no alignments will be output and the read will be counted as “mapped to too many loci” in the Log.final.out (default: 10)

--out-reads-unmapped

Type of output of unmapped and partially mapped (i.e. mapped only one mate of a paired end read) reads in separate file(s). This string can be “None” for no output or “Fastx” for output in separate fasta/fastq files, Unmapped.out.mate1/2 (default: None)

--out-sam-unmapped

Type of output of unmapped reads in the SAM format. The string can be “None” for no output, “Within” to output unmapped reads within the main SAM file, “KeepPairs” for no output and unmapped mates will be recorded for each alignment, or “Within_KeepPairs” to output unmapped reads within the main SAM file and unmapped mates will be recorded for each alignment (default: None)

--out-sam-attributes

A string of SAM attributes in the order desired for the output SAM. The string can contain any combination of the following attributes: {NH, HI, AS, nM, NM, MD, jM, jI, XS, MC, ch}. Alternatively, the string can be “None” for no attributes, “Standard” for the attributes {NH, HI, AS, nM}, or “All” for the attributes {NH, HI, AS, nM, NM, MD, jM, jI, MC, ch}.

e.g. --outSAMattributes NH nM jI XS ch

(default: Standard)

--out-sam-strand-field

Cufflinks-like strand field flag. The string can be “None” for no flag or “intronMotif” for the strand derived from the intron motif. Reads with inconsistent and/or non-canonical introns will be filtered out (default: None)

--out-sam-mode

SAM output mode. The string can be “None” for no SAM output, “Full” for full SAM output, or “NoQS” for full SAM output without quality scores (default: Full)

--out-sam-mapq-unique

The MAPQ value for unique mappers. Must be in the range [0, 255] (default: 255)

--read-files-command

Command line to execute for each of the input files. This command should generate FASTA or FASTQ text and send it to stdout. For example: zcat - to uncompress .gz files, bzcat - to uncompress .bz2 files, etc. (default: None)

--min-score-filter

Minimum score required for alignment output, normalized to the read length (sum of mates’ lengths for paired-end reads) (default: 0.66)

--min-spliced-mate-length

Minimum mapped length for a read mate that is spliced, normalized to the mate length. Must be greater than 0 (default: 0.66)

--max-junction-mismatches

Maximum number of mismatches for stitching of the splice junctions. A limit must be specified for each of the following: (1) non-canonical motifs, (2) GT/AG and CT/AC motif, (3) GC/AG and CT/GC motif, (4) AT/AC and GT/AT motif. To indicate no limit for any of the four options, use -1 (default: [0, -1, 0, 0])

--max-out-read-size

Maximum size of the SAM record (bytes) for one read. Recommended value: >(2*(LengthMate1+LengthMate2+100)*o utFilterMultimapNmax. Must be greater than 0 (default: 100000)

--max-alignments-per-read

Maximum number of different alignments per read to consider. Must be greater than 0 (default: 10000)

--score-gap

Splice junction penalty (independent on intron motif) (default: 0)

--seed-search-start

Defines the search start point through the read. The read split pieces will not be longer than this value. Must be greater than 0 (default: 50)

--max-bam-sort-memory

Maximum available RAM (bytes) for sorting BAM. If this value is 0, it will be set to the genome index size. Must be greater than or equal to 0 (default: 0)

--align-ends-type

Type of read ends alignment. Can be one of two options: “Local” will do a standard local alignment with soft-clipping allowed; “EndToEnd” will force an end-to-end read alignment with no soft-clipping (default: Local)

--align-insertion-flush

How to flush ambiguous insertion positions. The string can be “None” to not flush insertions or “Right” to flush insertions to the right (default: None)

--max-align-mates-gap

Maximum gap between two mates. If 0, max intron gap will be determined by (2^winBinNbits)*winAnchorDistNbins (default: 0)

--min-align-spliced-mate-map

Minimum mapped length for a read mate that is spliced. Must be greater than 0 (default: 0)

--max-collapsed-junctions

Maximum number of collapsed junctions. Must be greater than 0 (default: 1000000)

--min-align-sj-overhang

Minimum overhang (i.e. block size) for spliced alignments. Must be greater than 0 (default: 5)

--min-align-sjdb-overhang

Minimum overhang (i.e. block size) for annotated (sjdb) spliced alignments. Must be greater than 0 (default: 3)

--sjdb-overhang

Length of the donor/acceptor sequence on each side of the junctions. Ideally this value should be equal to mate_length - 1. Must be greater than 0 (default: 100)

--min-chim-overhang

Minimum overhang for the Chimeric.out.junction file. Must be greater than or equal to 0 (default: 20)

--min-chim-segment

Minimum chimeric segment length. If it is set to 0, there will be no chimeric output. Must be greater than or equal to 0 (default: 0)

--max-chim-multimap

Maximum number of chimeric multi-alignments. If it is set to 0, the old scheme for chimeric detection which only considered unique alignments will be used. Must be greater than or equal to 0 (default: 0)

--chim-multimap-score-range

The score range for multi-mapping chimeras below the best chimeric score. This option only works with –max-chim-multimap > 1. Must be greater than or equal to 0 (default: 1)

--chim-score-non-gtag

The penalty for a non-GT/AG chimeric junction (default: -1)

--min-non-chim-score-drop

To trigger chimeric detection, the drop in the best non-chimeric alignment score with respect to the read length has to be smaller than this value. Must be greater than or equal to 0 (default: 20)

--out-chim-format

Formatting type for the Chimeric.out.junction file. Possible types are {0, 1}. If type 0, there will be no comment lines/headers. If type 1, there will be comment lines at the end of the file: command line and Nreads: total, unique, multi (default: 0)

--out-chim-type

Type of chimeric output. This string can be “Junctions” for Chimeric.out.junction, “WithinBAM” for main aligned BAM files (Aligned.*.bam), “WithinBAM_HardClip” for hard-clipping in the CIGAR for supplemental chimeric alignments, or “WithinBAM_SoftClip” for soft-clipping in the CIGAR for supplemental chimeric alignments (default: Junctions)

--out-prefix

Prefix filename for output data (default: None)

--num-threads

Number of running worker threads per GPU (default: 4)

--num-gpus NUM_GPUS

Number of GPUs to use for a run. GPUs 0..(NUM_GPUS-1) will be used. If you are using flexera, please include –gpu-devices too.

--gpu-devices GPU_DEVICES

Which GPU devices to use for a run. By default, all GPU devices will be used. To use specific GPU devices enter a comma-separated list of GPU device numbers. Possible device numbers can be found by examining the output of the nvidia-smi command. For example, using –gpu-devices 0,1 would only use the first two GPUs.

--tmp-dir TMP_DIR

Full path to the directory where temporary files will be stored.

--with-petagene-dir WITH_PETAGENE_DIR

Full path to the PetaGene installation directory where bin/ and species/ folders are located.

--keep-tmp

Do not delete the directory storing temporary files after completion.

--license-file LICENSE_FILE

Path to license file license.bin if not in installation directory.

--version

View compatible software versions.

Identifying candidate fusion transcripts

QUICK START

Copy
Copied!
            

$ pbrun starfusion --chimeric-junction sample_x.out.junction --genome-lib-dir HG38 --output-dir sample_X/


COMPATIBLE CPU COMMAND

The command below is the CPU counterpart of the Parabricks command above. The output from these commands will generate the exact same results as the output from the above command.

Copy
Copied!
            

$ ./STAR-Fusion --chimeric_junction sample_x.out.junction --genome_lib_dir HG38 --output_dir sample_X/


OPTIONS

--chimeric-junction

Path to the Chimeric.out.junction file produced by STAR (default: None)

--genome-lib-dir

Path to a genome resource library directory. For more information, visit https://github.com/STAR-Fusion/STAR-Fusion/wiki/installing-star-fusion#data_resources_required

--output-dir

Path to the directory that will contain all of the generated files (default: None)

--num-threads

Number of threads for worker (default: 4)

--out-prefix OUT_PREFIX

Prefix filename for output data

--tmp-dir TMP_DIR

Full path to the directory where temporary files will be stored.

--with-petagene-dir WITH_PETAGENE_DIR

Full path to the PetaGene installation directory where bin/ and species/ folders are located.

--keep-tmp

Do not delete the directory storing temporary files after completion.

--license-file LICENSE_FILE

Path to license file license.bin if not in installation directory.

--version

View compatible software versions.

© Copyright 2020, NVIDIA. Last updated on Feb 23, 2021.