candidate gene identification
2
0
Entering edit mode
9.0 years ago
dinesh ▴ 50

Hi community, need suggestions

I have physical position of SNPs and I have to find the candidate gene near by SNPs. help to solve this problem.

e.g.:

chromosome 3 position  196643035
gene SNP • 2.0k views
ADD COMMENT
5
Entering edit mode
9.0 years ago

Convert your SNP positions to sorted BED3 format with awk or similar, to make a file called snps.bed.

Download annotations and convert to BED. For example:

$ wget -qO- ftp://ftp.sanger.ac.uk/pub/gencode/Gencode_human/release_21/gencode.v21.annotation.gff3.gz \
    | gunzip --stdout - \
    | awk '$3 == "gene"' \
    | convert2bed -i gff - \
    > genes.bed

Then use closest-features to find the nearest annotation to each SNP:

$ closest-features snps.bed genes.bed > answer.bed
ADD COMMENT
3
Entering edit mode
9.0 years ago
Ram 43k

Use the UCSC genome browser. Explore it, and you can visualize multiple factors in context.

In other news, you really need to learn how to phrase your questions well.

ADD COMMENT

Login before adding your answer.

Traffic: 2580 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6