Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Rubal7
    Member
    • Jan 2012
    • 15

    #1

    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.
  • casbon
    Junior Member
    • Sep 2011
    • 7

    #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

    • Rubal7
      Member
      • Jan 2012
      • 15

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

      Comment

      • Rubal7
        Member
        • Jan 2012
        • 15

        #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

        • SEQadmin2
          Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
          by SEQadmin2



          CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

          Despite this, “CRISPR helped turn genome editing from a specialized technique into
          ...
          07-31-2026, 11:01 AM
        • SEQadmin2
          Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
          by SEQadmin2


          Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

          The systematic characterization of the human proteome has
          ...
          07-20-2026, 11:48 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 08-11-2026, 10:35 AM
        0 responses
        11 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 08-06-2026, 07:41 AM
        0 responses
        29 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 08-03-2026, 10:13 AM
        0 responses
        48 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-31-2026, 02:55 AM
        0 responses
        48 views
        0 reactions
        Last Post SEQadmin2  
        Working...