Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • akhattri
    Junior Member
    • Mar 2011
    • 8

    awk - need help comparing 2 files

    I have two files for which I want to compare first 2 columns. What I need is if col1 & 2 of file 1 matches col 1 & 2 of file 2, print that line of file 2.

    File 1:
    chr1 1 A
    chr1 2 T
    chr1 3 C

    File 2:
    chr1 2 Y
    chr1 3 R
    chr1 4 Q
    chr2 5 R

    output:
    chr1 4 Q
    chr2 5 R


    I know in awk I can compare the two columns and print the matching lines in output but somehow the intersection does not work. The command that I use is:

    awk 'NR==FNR { a[$1"\t"$2]=$3 } NR>FNR { k=$1"\t"$2; if (k in a) print $0}' file1 file2
  • bioBob
    Member
    • Mar 2011
    • 72

    #2
    I do something like this in an awk script (modified for your scenario--but not tested):

    #!/usr/bin/env gawk
    ###needs file 1 and file 2 as input, keeps from file 2 anything found in file 1
    ###awk -f (this file) file1 file2

    ####change fields to reflect the selection feilds as appropriate
    BEGIN {
    file1 = ARGV[1]
    file2 = ARGV[2]

    delete hash

    while (getline < file1) {
    hash[$1"_"$2] = 1
    }

    while (getline < file2) {
    k=$1"_"$2
    if (k in hash ==1) {
    print $0
    }
    }

    exit (0)
    }

    Comment

    • lh3
      Senior Member
      • Feb 2008
      • 686

      #3
      Code:
      awk 'BEGIN{while((getline<"file1")>0)l[$1","$2]=1}!l[$1","$2]' file2

      Comment

      Latest Articles

      Collapse

      • SEQadmin2
        Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
        by SEQadmin2



        Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
        ...
        07-09-2026, 11:10 AM
      • SEQadmin2
        Cancer Drug Resistance: The Lingering Barrier to Rising Survival
        by SEQadmin2



        Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

        There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
        07-08-2026, 05:17 AM
      • GATTACAT
        Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by GATTACAT
        Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
        07-01-2026, 11:43 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 07-13-2026, 10:26 AM
      0 responses
      22 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-09-2026, 10:04 AM
      0 responses
      32 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-08-2026, 10:08 AM
      0 responses
      20 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-07-2026, 11:05 AM
      0 responses
      34 views
      0 reactions
      Last Post SEQadmin2  
      Working...