Changes between Version 57 and Version 58 of SOP/CallingVariantsRNAseq


Ignore:
Timestamp:
09/06/17 07:42:01 (8 years ago)
Author:
krichard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/CallingVariantsRNAseq

    v57 v58  
    7070 {{{java -jar /usr/local/share/picard-tools/picard.jar AddOrReplaceReadGroups I=output.sam O=rg_added_sorted.bam SO=coordinate RGID=ID_NAME RGLB=library RGPL=illumina RGPU=identifier RGSM=sample_name}}}
    7171
    72 '''Mark duplicate reads'''.
     72'''Mark duplicate reads.'''
    7373
    7474 
     
    7676
    7777
    78 '''Identify and split  Cigar N Reads and reassign quality scores'''.
     78'''Identify and split  Cigar N Reads and reassign quality scores.'''
    7979
    8080 {{{java -jar /usr/local/gatk3/GenomeAnalysisTK.jar -T SplitNCigarReads -R /path/to/genome/fasta -I dedupped.bam -o split.bam -rf ReassignOneMappingQuality -RMQF 255 -RMQT 60 -U ALLOW_N_CIGAR_READS -fixMisencodedQuals}}}
    8181
    8282
    83 '''Perform  BaseRecalibration'''. \\
     83'''Perform  BaseRecalibration.''' \\
    8484Calibration files can be found here for hg38 [https://console.cloud.google.com/storage/browser/genomics-public-data/resources/broad/hg38/v0 Recalibration Files]\\
    8585NOTE:  Calibration Files are only available for a few genomes (Human, Mouse, etc).  \\
     
    9292
    9393
    94 '''3 - Call and Filter Variants'''
     94'''3 - Call and Filter Variants.'''
    9595
    9696    {{{java -jar /usr/local/gatk3/GenomeAnalysisTK.jar -T HaplotypeCaller  -R /path/to/genome/fasta -I  recalibrated.bam -dontUseSoftClippedBases -stand_call_conf 20.0 -o Variants_called.vcf}}}
     
    9999
    100100
    101 '''4 - Predict the effects of called variants''' \\
     101'''4 - Predict the effects of called variants.''' \\
    102102    Several tools are available to analyze variants found in your .vcf result files for potential functional consequence.  See details  [http://barcwiki.wi.mit.edu/wiki/SOPs/vcf here].