Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • bambus
    Member
    • Nov 2013
    • 20

    A program to extract the reads and modify the seq ID by adding weight

    Hi everyone,

    I have a problem in executing the perl script (found online) is given below, a script t0 compare 2 files

    1) a file with seq IDs and its weight
    2) a file with seq IDs and the sequences.

    I modified the original script a bit and tried to use the code with my data,but it neither prints out the output nor gives out any errors and further I want to add the weights in the file 1 to the sequence ID after comparing and extracting the respective reads.

    Input files and the script are attached.

    expected output:-

    >comp10003_c0_seq1 len=166 path=[748:0-22 1004:23-46 2527:47-165]_weight=41
    AAGTAGCCTATGCGCTACAGTAAGAAAGACAGGTGAAAAAATGGAAGTAAAACAATTAGA
    TGACTACTTTGGATATACAGAAAAGGGCAGTTCCTTAGAGGGGGAATTACGAGCAGGACT
    AACGACATTCTTGACAATGGCGTACATTCTGTTTGTGAACCCAGAC


    Could anyone please help me out.

    Thank you in advance.
    Attached Files
  • westerman
    Rick Westerman
    • Jun 2008
    • 1104

    #2
    Your script is pulling in the sample_IDs with the '>' attached as well as the count. It then pulls in the sample_reads without the '>' attached. The program thus can not match up sample_IDs with sample_reads. So there are two problems here -- (1) you are not saving the counts and (2) you can not match up IDs.

    The solution is to re-write the part where you have

    $ids{$_} += 1;

    Let us know you want more of a hint than that.

    Comment

    • bambus
      Member
      • Nov 2013
      • 20

      #3
      Does it mean that I have to create a hash of Ids or?

      Comment

      • westerman
        Rick Westerman
        • Jun 2008
        • 1104

        #4
        Yes, create the hash of IDs. You need to do two things:

        1) Remove the '>'
        2) Split out the counts from the read name and save the counts as the values in your hash.

        Comment

        • bambus
          Member
          • Nov 2013
          • 20

          #5
          Can you please help me how to proceed further to fulfill the steps you mentioned as I am not a very good programmer

          Comment

          • westerman
            Rick Westerman
            • Jun 2008
            • 1104

            #6
            The best way to become a better program is to experiment with your programs. :-)

            That said, I would change the line:

            $ids{$_} += 1;

            To

            my ($id, $count) = $_ =~ /^>*(\S+)\s+(\d+)/;
            $ids{$id} = $count;

            Note: I did not test the above. Basically you are taking the input line and looking for:
            1) '>' (optional)
            2) Characters (the id)
            3) Whitespace
            4) Digits (the count)
            And then putting the id and count into your %ids hash

            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.

              Probing...
              Today, 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...
              Yesterday, 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, Today, 10:04 AM
            0 responses
            7 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, Yesterday, 10:08 AM
            0 responses
            6 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-07-2026, 11:05 AM
            0 responses
            9 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-02-2026, 11:08 AM
            0 responses
            31 views
            0 reactions
            Last Post SEQadmin2  
            Working...