Seqanswers Leaderboard Ad

Collapse

Announcement

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

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

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


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

      Comment


      • #4
        thanks gsgs

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

        Comment


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

          Comment


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


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


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


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


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


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

                      • seqadmin
                        Essential Discoveries and Tools in Epitranscriptomics
                        by seqadmin




                        The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                        04-22-2024, 07:01 AM
                      • seqadmin
                        Current Approaches to Protein Sequencing
                        by seqadmin


                        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                        04-04-2024, 04:25 PM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, Today, 08:47 AM
                      0 responses
                      9 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-11-2024, 12:08 PM
                      0 responses
                      60 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 10:19 PM
                      0 responses
                      57 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 09:21 AM
                      0 responses
                      53 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X