-
Notifications
You must be signed in to change notification settings - Fork 12
Add vep sample #2384
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
boscoliveira
wants to merge
6
commits into
varfish-org:main
Choose a base branch
from
boscoliveira:add-vep-sample
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add vep sample #2384
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6418176
Merge pull request #1 from bihealth/main
ahujameg 06ac783
Merge branch 'bihealth:main' into main
ahujameg 3d04399
Merge branch 'bihealth:main' into main
ahujameg 0d20feb
Merge branch 'varfish-org:main' into main
ahujameg 9dc5248
docs: add sample VEP-annotated VCF for testing
boscoliveira fb347fc
Merge branch 'varfish-org:main' into add-vep-sample
boscoliveira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ##fileformat=VCFv4.2 | ||
| ##reference=GRCh38 | ||
| ##INFO=<ID=CSQ,Number=.,Type=String,Description="Consequence annotations from Ensembl VEP. Format: Allele|Consequence|SYMBOL|Gene|Feature|Feature_type|HGVSc|HGVSp|gnomAD_AF|CLIN_SIG"> | ||
| #CHROM POS ID REF ALT QUAL FILTER INFO | ||
| 17 43094464 rs80357914 C T . PASS CSQ=T|missense_variant|BRCA1|ENSG00000012048|NM_007294.4|Transcript|NM_007294.4:c.5266C>T|p.Arg1756His|0.00001|likely_pathogenic | ||
| 2 189873659 rs123456789 A T . PASS CSQ=T|splice_region_variant|COL5A2|ENSG00000163083|NM_000393.5|Transcript|NM_000393.5:c.1158+5A>T|-|0.0001|uncertain_significance | ||
| 17 3634395 rs987654321 GAT G . PASS CSQ=T|inframe_deletion|CTNS|ENSG00000103175|NM_004937.3|Transcript|NM_004937.3:c.614_616del|p.Asp205del|0.0008|pathogenic | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ## VEP output generated at 2025-01-28 19:30:00 | ||
| ## Using cache in /cache | ||
| ## Command: vep --input_file variant_input.txt --output_file variant_output.txt --format vcf --tab --force_overwrite --species homo_sapiens --assembly GRCh38 --offline --cache --symbol --hgvs --hgvsc --hgvsp --af_gnomad --clin_sig | ||
| #Uploaded_variation Location Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation Extra HGVSc HGVSp gnomAD_AF CLIN_SIG | ||
| COL5A2_variant 2:189873659 T COL5A2 NM_000393.5 Transcript splice_region_variant 1158+5 - - - - rs123456789 SYMBOL=COL5A2;SYMBOL_SOURCE=HGNC;HGNC_ID=HGNC:2210 NM_000393.5:c.1158+5A>T - 0.0001 uncertain_significance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ## VEP output generated at 2025-01-28 19:30:00 | ||
| ## Using cache in /cache | ||
| ## Command: vep --input_file variant_input.txt --output_file variant_output.txt --format vcf --tab --force_overwrite --species homo_sapiens --assembly GRCh38 --offline --cache --symbol --hgvs --hgvsc --hgvsp --af_gnomad --clin_sig | ||
| #Uploaded_variation Location Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation Extra HGVSc HGVSp gnomAD_AF CLIN_SIG | ||
| COL5A2_variant 2:189873659 T COL5A2 NM_000393.5 Transcript splice_region_variant 1158+5 - - - - rs123456789 SYMBOL=COL5A2;SYMBOL_SOURCE=HGNC;HGNC_ID=HGNC:2210 NM_000393.5:c.1158+5A>T - 0.0001 uncertain_significance |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
❓ Verification inconclusive
CSQ Allele does not match ALT (data correctness).
For this record, REF=GAT and ALT=G, but CSQ starts with
Tas the Allele. The CSQ Allele field must match ALT.Apply this diff to fix the allele:
Optional quick check to validate CSQ Allele equals ALT for all records (assumes single ALT and single CSQ entry per record):
🏁 Script executed:
Length of output: 459
Fix CSQ Allele mismatch
Verification confirmed a CSQ Allele of “T” does not match the ALT (“G”) at chr17:3634395. Update the CSQ field to use the ALT allele:
• File: VEP/HG008-T_vs_HG008-N-D.tnscope_VEP.ann.vcf
• Location: record at 17:3634395
Diff:
📝 Committable suggestion
🤖 Prompt for AI Agents