Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Retrieving regions from VCF to run statistics

    Hello all,

    I am a beginner programmer analysing some data in VCF format.
    I have a .txt file, 'regions.txt' that contains a list of chromosomal positions in the format 1:3435245-34378385 (chromosome: then window coordinates).

    I would like to create a loop that does the following:
    For each line in regions.txt, extract this region from vcf.gz file, then run vcftools --window-pi on the region (all regions are 10kb in size) and export results to fileofresults.txt
    So that in the end there is a single text file with results for all the regions in the regions.txt file.

    If anyone knows how to do this or something similar your help is really appreciated. (Or if you know why this would not be possible please let me know!)

    Thanks in advance for your help.

  • #2
    Something like ...

    for $i in regions.txt; do tabix vcf.gz $i | vcftools --window-pi >> results.txt; done

    but my from memory bash is probably pretty inaccurate.

    Comment


    • #3
      Thanks , it says $i not a valid variable, but I am troubleshooting

      Comment


      • #4
        main problem seems to be that vcftools throws up error for VCF required for the --windows-pi command. Tabix retrieves the specified genomic region. Is the problem that there is no header line or perhaps does VCF tools not read old format VCF as we are using 1000 genomes pilot data with 0|0 instead of 0/0 format for genotypes.

        Any help appreciated!
        Last edited by Rubal7; 06-19-2012, 12:05 AM.

        Comment

        Latest Articles

        Collapse

        • 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
        • seqadmin
          Strategies for Sequencing Challenging Samples
          by seqadmin


          Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
          03-22-2024, 06:39 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, 04-11-2024, 12:08 PM
        0 responses
        25 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 10:19 PM
        0 responses
        29 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 09:21 AM
        0 responses
        25 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-04-2024, 09:00 AM
        0 responses
        52 views
        0 likes
        Last Post seqadmin  
        Working...
        X