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
                        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...
                        Today, 07:11 AM
                      • SEQadmin2
                        From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                        by SEQadmin2


                        Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                        The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                        ...
                        06-02-2026, 10:05 AM
                      • SEQadmin2
                        Single-Cell Sequencing at an Inflection Point: Early Impacts of New Platforms and Emerging Trends
                        by SEQadmin2


                        With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.


                        Introduction

                        Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...
                        05-22-2026, 06:42 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by SEQadmin2, Yesterday, 06:09 AM
                      0 responses
                      16 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-09-2026, 11:58 AM
                      0 responses
                      37 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-05-2026, 10:09 AM
                      0 responses
                      42 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-04-2026, 08:59 AM
                      0 responses
                      49 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...