Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • lovenlong
    Member
    • Jan 2013
    • 16

    Problem in replacing the non-ACGT IUPAC codes to Ns with awk

    Hi, all

    It seems lots of people met the incompatibility problem in GATK when their input files were containing the non-ACGT IUPAC codes.
    I'm dealing with such a VCF files containing thousands of non-ACGT nucleotide codes now. I just want to replace these codes with "N" in the REF column, and tried to do with the awk command line as follows:
    awk '{gsub(/W|K|Y|R|S|M/,"N",$4); print}' Input.vcf > Input_Ns.vcf

    However, the output vcf was still unusable to GATK, and the error message indicated that the file structure had been changed:
    " ERROR MESSAGE: Line **: there aren't enough columns for ..."
    Indeed, additional to the replaces of non-ACGT codes with Ns in REF column, all "\tab"s in lines in which REF column had been changed have also been replced wiht a Space(" "), leading to the GATK interruption.
    Take the following as an example :
    Input.vcf
    1[\tab]2[\tab]3[\tab]4[\tab]5
    A[\tab]G[\tab]C[\tab]G[\tab]T
    A[\tab]T[\tab]C[\tab]S[\tab]Y
    T[\tab]K[\tab]L[\tab]T[\tab]A

    awk '{gsub(/W|K|Y|R|S|M/,"N",$4); print}' Input.vcf > Input_Ns.vcf

    Input_Ns.vcf
    1[\tab]2[\tab]3[\tab]4[\tab]5
    A[\tab]G[\tab]C[\tab]G[\tab]T
    A" "T" "C" "N" "Y
    T[\tab]K[\tab]L[\tab]T[\tab]A

    Why all the \tab in the 3rd line have been replaced ?
    How can I do to achieve my purpose?
    Is there any tool to resolve the incompatibility between non-acgt IUPAC codes and GATK?

    I'm a newbie in programming, and looking forward to your reply,

    Thanks a bunch!
    Last edited by lovenlong; 12-08-2013, 11:22 PM.
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    In your example specifying OFS (output field separator) should provide the correct output.

    Code:
    $ awk '{gsub(/W|K|Y|R|S|M/,"N",$4); OFS = "\t"; print}' Input.vcf > Input_Ns.vcf

    Comment

    • lovenlong
      Member
      • Jan 2013
      • 16

      #3
      Originally posted by GenoMax View Post
      In your example specifying OFS (output field separator) should provide the correct output.

      Code:
      $ awk '{gsub(/W|K|Y|R|S|M/,"N",$4); OFS = "\t"; print}' Input.vcf > Input_Ns.vcf

      Yes, it works correctly with your command line. Thank you!

      Comment

      Latest Articles

      Collapse

      • 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
      • SEQadmin2
        Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by SEQadmin2


        I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

        Here are nine questions we think about, in roughly the order they matter, before...
        06-18-2026, 07:11 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 07-02-2026, 11:08 AM
      0 responses
      25 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-30-2026, 05:37 AM
      0 responses
      23 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-26-2026, 11:10 AM
      0 responses
      23 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-17-2026, 06:09 AM
      0 responses
      55 views
      0 reactions
      Last Post SEQadmin2  
      Working...