Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • 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.

  • #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


    • #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


      • #4
        Here is the awk:

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

        Comment


        • #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

          • seqadmin
            Best Practices for Single-Cell Sequencing Analysis
            by seqadmin



            While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
            Yesterday, 07:15 AM
          • seqadmin
            Latest Developments in Precision Medicine
            by seqadmin



            Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

            Somatic Genomics
            “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
            05-24-2024, 01:16 PM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Today, 06:58 AM
          0 responses
          13 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Yesterday, 08:18 AM
          0 responses
          19 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Yesterday, 08:04 AM
          0 responses
          18 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 06-03-2024, 06:55 AM
          0 responses
          13 views
          0 likes
          Last Post seqadmin  
          Working...
          X