Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #31
    Originally posted by alizaid12 View Post
    Hello. I chanced across this forum and I wonder if I can ask a rather naive question. I recently used PLINK/ Haploview for understanding the data of the highly ranked SNPs in a GWAS analysis. I had planned to visualize my SNPs in LD blocks [and their proximity to genes of interest[, by using Haploview. Additionally, I used dbSNP to confirm the proximity of my SNPs to genes of potential interests.

    Curiously enough, no matter how hard I have tried, I cannot get Haploview to show the same genes, that I can visualize when using dbSNP. I have tried repeatedly but with no satisfactory breakthrough. I would be so grateful if someone could have some suggestions on what I may be doing incorrectly.

    I can also give a list of sequential steps [ as to what I am doing that is giving different results]

    Thankyou for taking the time to read my question.

    A.Z
    Can't understand your question. What exactly you want to do with your data? Can you elaborate it!

    Comment


    • #32
      Hello and thanks for the replies. I am sorry for not expressing my thoughts carefully in the earlier email. I have made a little powerpoint showing with 3 seections. Please see attached ppt file
      --[section 1] the steps of my workup in Haploview and
      --[section 2] the LD block results I am trying to obtain, to get try and get [this is an example]
      --[section 3], the problem I am facing repeatedly

      I have tried all the possible combinations of Haploview [see the slides of section 1] but I am not able to get a result for rs41363947 [the top ranked SNP in my list]. For that matter, for all my other high ranked SNPs, although some genes are seen in dbSNP, but I cannot confirm my results in Haploview

      Thank you

      Ali
      Attached Files

      Comment


      • #33
        Also, I saw the attached files from Gringer san. I would very much like to read your paper [if already published, as it may very well be a good reference paper for my PhD thesis and subsequent actual paper]. If not yet published, please do let me know. I think your methods section would be very good reading.

        All the 3 files attached your provided are good[especially the file titled maoA_LD_with_VNTR.pdf is how I would probably wish to show the results for each one of the top 10 SNPs from my high ranked SNP list].

        I welcome your suggestions / comments

        Comment


        • #34
          So, at a guess, you're analysing the hapmap data surrounding a particular SNP (i.e. downloading from within Haploview, rather than your own data), which simplifies things a bit.

          In terms of getting a good picture, I'd suggest downloading an SVG version of the data track from the Hapmap website (Hapmap Genome Browser, click on the '[High-res Image]' link just above the search bar), and combining that with an SVG export from Haploview. You can then import both images into Inkscape or Illustrator and change text sizes to suit your preferred layout. It's a bit fiddly to edit -- I think I manually removed all the grey blocks around the image, but produces a much nicer result than a bitmap image.

          The official page for my thesis is here. The unofficial location for my thesis is http://gringer.org/thesis.pdf. There's a paper on the MAOA gene (based on one of the chapters in my thesis) which has just been accepted for publication, but I don't yet have a link for that.

          Comment


          • #35
            Originally posted by alizaid12 View Post
            I have tried all the possible combinations of Haploview [see the slides of section 1] but I am not able to get a result for rs41363947 [the top ranked SNP in my list]. For that matter, for all my other high ranked SNPs, although some genes are seen in dbSNP, but I cannot confirm my results in Haploview
            It may be that your favourite SNP is flagged as invalid by Haploview for a number of reasons. It is possible to enable it so that it shows up in the LD plot, as I mentioned in a previous response:

            Then you probably have markers that have been flagged to be ignored for some reason. Go to the marker tab and see if there are any red fields for those markers (this will explain why the marker was excluded. Check the 'rating' box for your markers, and they should be included and appear in the LD plot.

            Comment


            • #36
              Gringer san. I just saw messages. I will definately be working on this. I would like to post back my progress on the forum again. Thankyou so much for taking time out to help. I really appreciate it.

              Much regards from Tokyo...;-]

              Comment


              • #37
                どういたしまして。You're welcome.

                Comment


                • #38
                  Thanks ;-]. I downloaded inkscape and will try to see how I can work it. Will post back soon.

                  Have a great day

                  Comment


                  • #39
                    I use beagle for phasing. It seems like it is the tool 23andme used in their papers.

                    Comment


                    • #40
                      Originally posted by ymc View Post
                      I use beagle for phasing. It seems like it is the tool 23andme used in their papers.
                      I think you meant to post in this thread:

                      Discussion of next-gen sequencing related bioinformatics: resources, algorithms, open source efforts, etc

                      Comment


                      • #41
                        Generating .ped and .map file

                        I am trying to use merlin for pedigree analysis
                        I have obtained ~100 variants(VCF)
                        looks like ped file can be generated from vcf file by vcftools.
                        I cannot figure out how to generate .map file from vcf..
                        Actually, I cannot really figure out how to use merlin if I only have vcf file..
                        It will be awesome if someone could save me from this

                        Comment


                        • #42
                          Hi,

                          Not sure if this is the right place to post this error while using Haploview. I have a vcf file and I have converted it to PED and MAP files by vcftools. Then I tried to load it into haploview and it throws this error "For any marker, an individual's genotype must be only letters or only". I have checked the vcf file and ped file. Everything looks fine. Please let me know, if you have any ideas in solving this problem. Thanks in advance.

                          Dheeraj.

                          Comment


                          • #43
                            Without knowing what your input file looks like, there's not much that can be done to help. If you have a linux command line available, then the following should give an idea of whether the file has odd-looking input:

                            Code:
                            perl -pe 's/^\s+//;s/\s$//;s/[ \t]+/\t/g' <input_file.txt> | cut -f 7- | perl -pe 's/\t/\n/g' | sort | uniq -c
                            Translation: strip trailing and leading spaces, convert spaces to tabs, remove the first 6 columns, convert tabs to line breaks, count unique lines

                            Output should be something like the following:
                            Code:
                                122 0
                               1826 1
                               1380 2
                               1703 3
                               1185 4

                            Comment


                            • #44
                              Originally posted by gringer View Post
                              Without knowing what your input file looks like, there's not much that can be done to help. If you have a linux command line available, then the following should give an idea of whether the file has odd-looking input:

                              Code:
                              perl -pe 's/^\s+//;s/\s$//;s/[ \t]+/\t/g' <input_file.txt> | cut -f 7- | perl -pe 's/\t/\n/g' | sort | uniq -c
                              Translation: strip trailing and leading spaces, convert spaces to tabs, remove the first 6 columns, convert tabs to line breaks, count unique lines

                              Output should be something like the following:
                              Code:
                                  122 0
                                 1826 1
                                 1380 2
                                 1703 3
                                 1185 4
                              Hi,

                              Thanks for your reply, but actually I fixed it. The problem was the using the ped file from vcftools. I had to use the vcf to ped converter from 1000genomes website.

                              cheers,
                              Dheeraj

                              Comment


                              • #45
                                Hi,

                                I am trying to identify the SNPs that are in LD with one of the rare SNP identified in our study in one family in a particular gene. So, I want to use Haploview for LD calculations, I have a multisample VCF file with the genotypes of all the family members. I have few questions regarding the analysis:
                                Can I use haploview to do the analysis without phasing the genotypes ??
                                If phasing is required can I use BEAGLE to do the phasing and impute the missing parental genotypes at the same time ??

                                Or any other suggestions ??

                                Please let me know. Thank you very much in advance.

                                Dheeraj.

                                Comment

                                Latest Articles

                                Collapse

                                • seqadmin
                                  Essential Discoveries and Tools in Epitranscriptomics
                                  by seqadmin




                                  The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                                  04-22-2024, 07:01 AM
                                • seqadmin
                                  Current Approaches to Protein Sequencing
                                  by seqadmin


                                  Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                                  04-04-2024, 04:25 PM

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by seqadmin, 04-25-2024, 11:49 AM
                                0 responses
                                19 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 04-24-2024, 08:47 AM
                                0 responses
                                18 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 04-11-2024, 12:08 PM
                                0 responses
                                62 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 04-10-2024, 10:19 PM
                                0 responses
                                60 views
                                0 likes
                                Last Post seqadmin  
                                Working...
                                X