Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • kylle345
    Member
    • Apr 2009
    • 10

    File format

    Hi,

    I have a sequencing file that looks like this:

    4_1_932_784 GGACAGTTTTTTCCAATTATGGAACGCCTGTTCCTG
    4_1_829_103 GTCACTATCTCAGTCAAAATTTAAGAAAATTGACAT
    4_1_450_206 GTGCTATATCCCTATATAACCTACCCATCCACCTTT
    4_1_495_275 GTTGTGGGAAATTGGAGCGATAAGCGTGCTTCTTCC

    It is different from the standard fastq format. Does anyone know what format this is called?

  • ECO
    --Site Admin--
    • Oct 2007
    • 1360

    #2
    Check this thread:

    Discussion of next-gen sequencing related bioinformatics: resources, algorithms, open source efforts, etc

    Comment

    • kylle345
      Member
      • Apr 2009
      • 10

      #3
      Hey thanks for the reply but..

      But I only have the .seq file and not the .prb file.

      Does anyone know how to only handle the .seq file?

      thanks

      Comment

      • ECO
        --Site Admin--
        • Oct 2007
        • 1360

        #4
        What do you want to do with the .seq file? Convert to fasta? fastq?

        Comment

        • kylle345
          Member
          • Apr 2009
          • 10

          #5
          Hi sorry,

          I want to convert to it a fastq file.

          Comment

          • nilshomer
            Nils Homer
            • Nov 2008
            • 1283

            #6
            Originally posted by kylle345 View Post
            Hi sorry,

            I want to convert to it a fastq file.
            The *seq.txt files from my observations do not have qualities so you will have to make dummy quality values. For single end data, you could do something like:

            Code:
            awk '{printf("@%d:%d:%d:%d\n%s\n+\n", $1, $2, $3, $4, $5); 
            for(i=0;i<length($5);i++) { printf("I"); }; 
            printf("\n")}' 
            s_1_0001_seq.txt
            For paired end data, they concatenate the two reads so it is a little more complicated using awk but the above should get you started.

            Comment

            • kylle345
              Member
              • Apr 2009
              • 10

              #7
              so that will help me create a .prb file?

              Hey thanks for the quick replies. So having a .seq file is not enough to make a fastq file so that awk line helps me create a .prb file from .seq?

              then the combination of .seq and .prb can create a fastq?

              thanks

              Comment

              • nilshomer
                Nils Homer
                • Nov 2008
                • 1283

                #8
                Originally posted by kylle345 View Post
                Hey thanks for the quick replies. So having a .seq file is not enough to make a fastq file so that awk line helps me create a .prb file from .seq?

                then the combination of .seq and .prb can create a fastq?

                thanks
                The .seq file does not store qualities, so the qualities will have not have any meaning. The above awk command will output in FASTQ format so you do not need to worry about .seq and .prb files.

                If you have .qseq files (or .seq and .prb which you seem to be missing), then you can make a meaningful fastq file.

                Comment

                • kylle345
                  Member
                  • Apr 2009
                  • 10

                  #9
                  Hi I tried the awk line but it does not place the sequences in the new file.

                  I tried awk '{printf("@%d:%d:%d:%d\n%s\n+\n", $1, $2, $3, $4, $5); for(i=0 file1.txt > file2.txt

                  the output file only contains

                  @1:0:0:0

                  +

                  @1:0:0:0

                  +

                  @1:0:0:0


                  Its missing the sequence in between the lines.... is there something missing?

                  Comment

                  • nilshomer
                    Nils Homer
                    • Nov 2008
                    • 1283

                    #10
                    Originally posted by kylle345 View Post
                    I tried awk '{printf("@%d:%d:%d:%d\n%s\n+\n", $1, $2, $3, $4, $5); for(i=0 file1.txt > file2.txt

                    the output file only contains

                    @1:0:0:0

                    +

                    @1:0:0:0

                    +

                    @1:0:0:0


                    Its missing the sequence in between the lines.... is there something missing?
                    I must admit I am an author of the alignment program BFAST (free for academic use), which does have a "qseq2fastq.pl" perl script. It may be easier to rely on such a script.

                    Comment

                    • kylle345
                      Member
                      • Apr 2009
                      • 10

                      #11
                      thanks

                      Hey,

                      I will check it out

                      Kyle

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