Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • zisis86
    Member
    • Mar 2013
    • 10

    sequence-formatted file (.seq)

    How to obtain sequence-formatted file (.seq) from fas/fastq ?
    I need the Arabidopsis Chromosome in seq format in order to use it in a pipeline for experiments
  • maubp
    Peter (Biopython etc)
    • Jul 2009
    • 1544

    #2
    Do you have any example files to look at, or more information about what this sequence-formatted file (.seq) means?

    I would guess they just mean a FASTA file using the extension *.seq instead of *.fasta, *.fas, etc.

    Comment

    • zisis86
      Member
      • Mar 2013
      • 10

      #3
      The example files that i have are in seq format and i cant open them!for example chr1.seq chr2.seq etc
      I guess the same . Do you know any editor for Linux to convert Fastq in seq?

      Comment

      • westerman
        Rick Westerman
        • Jun 2008
        • 1104

        #4
        I think that the point Peter was making is: "What are .seq files?" These are not a common standard file. In order for us to help you, please give us an example of what you want and/or the name of the program of that wants these .seq files.

        Comment

        • GenoMax
          Senior Member
          • Feb 2008
          • 7142

          #5
          .seq files should just be fasta formatted sequence files.

          If distant memory serves me right then they used to be produced from ABI sequence files when an external basecaller was used.

          zisis86: Can you tell us what it is that you are exactly trying to do?

          Note (looked this up): When ABI SCF files were processed with Phread, a .seq and a corresponding .qual files were produced.
          Last edited by GenoMax; 04-15-2013, 08:38 AM.

          Comment

          • swbarnes2
            Senior Member
            • May 2008
            • 910

            #6
            Sanger sequencing cores often return a .seq and an .ab1 file. So the .seq is just a plain text version of the sequence.

            I don't think there are any rules about what a .seq has to look like, but they are almost certainly just text files, and you could open them in anything that can read text.

            Comment

            • zisis86
              Member
              • Mar 2013
              • 10

              #7
              Well i am trying to use this toolhttp://compgenomics.weizmann.ac.il/tanay/?page_id=367\ . It's a tool for analyzing 4C-seq experiments, including sequence extraction, mapping, normalization. I tried the example that this tool provides and i did it but it is complicated when you want to use another data set . For example i want to use data from Arabidopsis chromosome. In order to be able to run the experiments and the steps of this tool you need to have yous files at first at seq format. Also you have to convert fastq files in raw files etc. If you check this link there is a manual of the tool.

              thank you

              Comment

              • sklages
                Senior Member
                • May 2008
                • 628

                #8
                Having a look at the manual, ..
                [...] the pipeline uses .seq files (note: these are distinct from fasta files) [...]
                The chromosome seq files are just the plain sequence itself on one line, no header, no newlines.

                Conversion of fastq data is documented.

                Comment

                • zisis86
                  Member
                  • Mar 2013
                  • 10

                  #9
                  Thanks for the help.I think the same.
                  Is it possible to create a script in perl or other language to do this job? to read the lines from the fastq file and to write in another file on one line. Any ideas?

                  Comment

                  • westerman
                    Rick Westerman
                    • Jun 2008
                    • 1104

                    #10
                    Lots of possible code ranging from complex and error-proof to simple and prone to error. Probably tons of pre-written programs as well. But since you asked, here is a nice cryptic perl script

                    perl -pe 'BEGIN{<>}; print $_; <>;<>;<>;' < input_file > output_file

                    Comment

                    • sklages
                      Senior Member
                      • May 2008
                      • 628

                      #11
                      Originally posted by zisis86 View Post
                      Thanks for the help.I think the same.
                      Is it possible to create a script in perl or other language to do this job? to read the lines from the fastq file and to write in another file on one line. Any ideas?
                      Your reference data is fastq-formatted? If you talk about the read data, then you need to convert to "raw" format, described in "3.2 Converting fastq files to “raw” format".

                      And, .. just to add another one ;-)

                      perl -lne 'print if(($.+2)%4==0)' input_file > output_file

                      Comment

                      Latest Articles

                      Collapse

                      • 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
                      • SEQadmin2
                        Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                        by SEQadmin2


                        I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

                        Here are nine questions we think about, in roughly the order they matter, before...
                        06-18-2026, 07:11 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      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
                      8 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-02-2026, 11:08 AM
                      0 responses
                      31 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-30-2026, 05:37 AM
                      0 responses
                      29 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...