| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This project analyzes paired-end targeted exome sequencing data generated by Illumina platform. The sequencing was performed using custom gene panels. The workflow focuses on identifying and characterizing germline variants (SNPs and Indels) using the GATK Best Practices pipeline, followed by filtering and annotation to generate high-confidence variant calls within the targeted regions. Note Raw sequencing data is not included in this repository as it belongs to the clinical laboratory and contains patient-derived samples. Output files (filtered and annotated VCFs) are included in final_results/ to demonstrate pipeline outputs.
Identify clinically relevant germline variants in cancer predisposition genes from targeted exome seq data, following GATK Best Practices Pipeline.
Quality Control
Read Alignment
Post-Alignment Processing
Base Quality Score Recalibration (BQSR)
Variant Calling
Variant Filtration
Variant Annotation
Some variants observed within the samples are as follows.
| Gene | rsID | Position (b37) | Change | ClinVar Classification |
|---|---|---|---|---|
| MLH1 | rs2020873 | 3:37092025 | C > T | Benign |
| BRCA1 | rs1799966 | 17:41223094 | T > C | Benign |
| BRCA1 | rs16941 | 17:41244435 | T > C | Benign |
| BRCA2 | rs144848 | 13:32906729 | A > C | Benign/VUS |
No pathogenic or likely pathogenic variants were identified in this set of samples. All detected variants are classified as benign or variants of uncertain significance (VUS) in ClinVar, consistent with a germline screening result in unaffected or low-risk individuals.
To run this targeted exome sequencing pipeline locally, open your terminal, clone the repository, and navigate into the project directory:
git clone https://github.com/razmia02/targeted-exome-seq-analysis.git)
cd targeted-exome-seq-analysis# Create the environment from the configuration file conda env create -f env.yaml # Activate the environment conda activate exome_seq
Before running the pipeline, make sure to download and place your reference genome (human_g1k_v37.fasta) and known variant sites VCF files (dbsnp_138.b37.vcf, Mills_and_1000G_gold_standard.indels.b37.vcf) into the ref_files/b37/ directory.
chmod +x script.sh ./script.sh
targeted-exome-seq-analysis/ ├── reads/ # Raw & processed reads ├── script.sh # shell script for analysis ├── final_results/ # Raw, processed & final annotated indels & snps └── README.md # Project documentation └── env.yaml # Conda environment
| Back | FazBrowse Home | New Git URL |