Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • DrD2009
    Member
    • Oct 2009
    • 88

    Script Help

    Hello everyone,

    I've been racking my brain trying to create a script to make a certain file, but I have had no success in my attempts.

    I have a file like this:
    Code:
    ACGCCGGCCA
    GTGAATTGTA
    ATACGACTCA
    CTATAGGGCG
    AATTGGGCCC
    TCTAGATG
    All I want to do is to create a file like the following:
    Code:
    1	ACGCCGGCCA
    11	GTGAATTGTA
    21	ATACGACTCA
    31	CTATAGGGCG
    41	AATTGGGCCC
    51	TCTAGATGCA
    61	TGCTCGAGCG
    71	GCCGCCAGTG
    It should be something relatively easy I'm just really missing. I've been trying it using awk, but have had little luck.

    I believe it is basically just this code:
    Code:
    awk '{print NR?????? "\t" $0}'
    I'm just not sure what the ??????????? should be. Any help with this would be great. Thanks in advance.
  • Kennels
    Senior Member
    • Feb 2011
    • 149

    #2
    If it's ok with perl, here's a simple perl one liner:

    Code:
    perl -e ' $pos=1; while(<>) { $line=$_; print "$pos\t$line"; $pos+=10; } ' inputfile.txt > outputfile.txt
    replace inputfile.txt with your file containing your reads, and outputfile.txt with a desired output file name.

    I'm assuming you want the position of the base at the start of every line. You can replace the '10' in the code if you desire another increment. The delimiter here is a tab (\t).

    Comment

    • oiiio
      Senior Member
      • Jan 2011
      • 105

      #3
      I was going to say something very similar to Kennels's answer. If you are going to be doing this kind of thing frequently, Perl is awesome!

      Comment

      • cliffbeall
        Senior Member
        • Jan 2010
        • 144

        #4
        Here is the awk:

        Code:
        awk -v N=1 '{print N "\t" $0} {N += 10}'

        Comment

        • kwatts59
          Member
          • Apr 2011
          • 46

          #5
          Use MS Excel to open the file, insert a column in the front of the data.
          Put 1 in the A1 cell. In cell B1, put the formula =A1+10. Then fill down the column.
          Then save the file as a text file, tab delimited.

          Comment

          Latest Articles

          Collapse

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 06-09-2026, 11:58 AM
          0 responses
          14 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-05-2026, 10:09 AM
          0 responses
          26 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-04-2026, 08:59 AM
          0 responses
          37 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-02-2026, 12:03 PM
          0 responses
          61 views
          0 reactions
          Last Post SEQadmin2  
          Working...