Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • loba17
    Member
    • Sep 2011
    • 19

    Merging Pairwise Sequence Alignment

    Dear All,

    I am looking for a way to "merge" two large sequence files. The first sequence is the reference sequence and the second is a consensus sequence containing ambiguous nucleotides (Ns). The merged sequence should correspond to the consensus sequence but the missing nucleotides should be used from the reference.

    Example:

    BAM-consensus: CCCTANNNNNNNNCATCTACATGG
    Reference: GTATAGATATCATCATCTACATCC
    Output => CCCTAGATATCATCATCTACATGG


    I tried Emboss (cons, consambig, megamerger) but the problems are ambiguous nucleotides. I wrote a simple unix script and it worked just fine but not with large sequences (100MB). Any ideas that would work for larger files?

    Thanks for considering my question!
  • RickBioinf
    Member
    • Sep 2012
    • 28

    #2
    Maybe try and right a Perl file, I think that would be your best option for this.
    I personally don't know a tool for this.

    Comment

    • gsgs
      Senior Member
      • Oct 2009
      • 139

      #3
      m1:a=fgetc(file1);
      b=fgetc(file2);
      if(a=='N')a=b;
      fputc(a,file3);
      if(feof(file1)==0)goto m1;

      Comment

      • loba17
        Member
        • Sep 2011
        • 19

        #4
        thanks gsgs

        for your helpful reply. unfortunately I am not familiar with fgetc. I am on a Linux RedHat system.

        Comment

        • gsgs
          Senior Member
          • Oct 2009
          • 139

          #5
          it's a pity with all those different systems ...
          do you have a C-compiler ? The simpler the better

          Comment

          • loba17
            Member
            • Sep 2011
            • 19

            #6
            the system was not my choice

            I do have a c compiler an it is :
            gcc version 4.4.6 20120305 (Red Hat 4.4.6-4)

            does this help in anyway?

            Comment

            • gsgs
              Senior Member
              • Oct 2009
              • 139

              #7
              yes, that could work in theory ...

              have you ever successfully compiled a simple C-program ?

              I'll test it (on Windows) and post it here later (or PM or email if you prefer)

              are the 2 files in fasta-format ?

              Comment

              • loba17
                Member
                • Sep 2011
                • 19

                #8
                I guess I would be able to handle compiling a simple C program using:
                gcc infile.c -o outfile

                I have one file with two sequences but I can easily split into two.

                I could also try to compile the lines you send me myself if you could help me with the C formating:

                /* File: merger.c
                Function: Simple program to merge a reference sequence and with another sequence.
                */

                #include <stdio.h>

                void main ()
                {
                m1:a=fgetc(file1);
                b=fgetc(file2);
                if(a=='N')a=b;
                fputc(a,file3);
                if(feof(file1)==0)goto m1;
                }

                ???

                Thanks again for your help!

                Comment

                • gsgs
                  Senior Member
                  • Oct 2009
                  • 139

                  #9
                  /* I'm not sure about Linux, (ascii 10 for end of line rather than
                  ascii 13 and ascii 10 for windows
                  it prints the result, redirect to a file via ">" - piping :
                  loba oldfile.fa ref.fa > newfile.fa

                  fasta-file with one sequence only, same length and lines and aligned to the reference
                  should it also handle multi-sequence-fasta-files ?

                  */


                  #include <stdio.h>
                  int a,b;
                  FILE *file1,*file2;

                  int main(int argc,char*argv[]){
                  if(argc<3){printf("\nusage:loba file1 file2\n\n");
                  printf("replaces N in file1 by what file2 has at that position\n");
                  exit(1);}


                  if((file1=fopen(argv[1],"rb"))==NULL){printf("\ncan't open file %s\n",argv[1]);exit(1);}
                  if((file2=fopen(argv[2],"rb"))==NULL){printf("\ncan't open file %s\n",argv[2]);exit(1);}

                  a=0;while(a!=10){a=fgetc(file1);printf("%c",a);} /* first line printed */
                  a=0;while(a!=10)a=fgetc(file2); /* first line ignored (fasta-format ?)*/

                  m1:;
                  a=fgetc(file1);
                  b=fgetc(file2);
                  if(a=='N')a=b;
                  printf("%c",a);
                  if(feof(file1)==0)goto m1;
                  fclose(file1);fclose(file2);

                  }
                  Last edited by gsgs; 12-17-2012, 05:14 AM.

                  Comment

                  • loba17
                    Member
                    • Sep 2011
                    • 19

                    #10
                    it works - thanks !

                    the compiler finishes with warning but no errors (see below) - I guess that is ok?
                    I tested it and it works now I have to test it with a big file !!

                    Thank you very much for your help !

                    merger.c: In function ‘main’:
                    merger.c:21: warning: incompatible implicit declaration of built-in function ‘exit’
                    merger.c:23: warning: incompatible implicit declaration of built-in function ‘exit’
                    merger.c:24: warning: incompatible implicit declaration of built-in function ‘exit’

                    Comment

                    • gsgs
                      Senior Member
                      • Oct 2009
                      • 139

                      #11
                      if it works, the warnings are no problem
                      maybe it should be exit() instead of exit(1) for your compiler

                      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
                      20 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-09-2026, 10:04 AM
                      0 responses
                      30 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...