Unconfigured Ad

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

    #1

    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
                        Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
                        by SEQadmin2



                        CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

                        Despite this, “CRISPR helped turn genome editing from a specialized technique into
                        ...
                        Today, 11:01 AM
                      • SEQadmin2
                        Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                        by SEQadmin2


                        Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                        The systematic characterization of the human proteome has
                        ...
                        07-20-2026, 11:48 AM
                      • 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

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by SEQadmin2, Today, 02:55 AM
                      0 responses
                      7 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-24-2026, 12:17 PM
                      0 responses
                      12 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-23-2026, 11:41 AM
                      0 responses
                      12 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-20-2026, 11:10 AM
                      0 responses
                      24 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...