Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ardmore
    Member
    • Jun 2011
    • 51

    Fastq to Fasta

    Hello I want to convert fastq to fasta, by google search I got a perl code.

    However my perl knowledge is almost zero, I don't know how to run this script. Do I need to input arguments for input or output file?
    Please give me an example.


    Thanks.
  • NicoBxl
    not just another member
    • Aug 2010
    • 264

    #2
    use awk :
    awk 'BEGIN{P=1}{if(P==1||P==2){gsub(/^[@]/,">");print}; if(P==4)P=0; P++}' input.fastq > output.fasta

    Comment

    • nickloman
      Senior Member
      • Jul 2009
      • 355

      #3
      Ardmore, you are cluttering the forum with questions that can be resolved by looking at existing, easily located resources on the Internet. I've previously voiced my concerns in another thread that you are trying to use the forum to solve coursework problems which in my opinion is not a legitimate use for it.

      My feeling is there's only so much time and effort the community should be prepared to put into newbie questions like yours. I would suggest you enrol in a basic course on scripting and/or bioinformatics, read some basic bioinformatics tutorials, or find a mentor at your institution who can help you.

      If you feel I am being unfair, perhaps you can explain what your project is and why we should help you with basics like running perl scripts.

      Comment

      • ardmore
        Member
        • Jun 2011
        • 51

        #4
        I understand your concern. But I am not a student for my course worker. Actually my major is not bioinformatics but I am doing daily bioinformatics project. Maybe I selected a wrong career? I don't have a time to enroll a perl course because the work is due very soon and perl is rarely used.

        I hope this forum can have a subforum for newbie. Thanks for your time and advice. I will keep quite in this forum.

        Comment

        • swbarnes2
          Senior Member
          • May 2008
          • 910

          #5
          It's not that you are a newbie. This field is only a few years old, everyone here started as a newbie just a few years ago. But everyone else started by reading some documentation, so that they understood what the hell they were talking about. You don't even know what a fastq file is!

          By posting here, you are asking people to spend their own time to answer your questions. People are by and large willing to do that, but not when you have demonstrated that you haven't invested a lick of your own time to understand even the basics of the work you are trying to do.

          Comment

          • bioBob
            Member
            • Mar 2011
            • 72

            #6
            I like the awk script. I modified a perl snip I found to also convert '.' to 'N' I found in some Illumina fastqs:

            cat FILEIN | perl -e '$i=0;while(<>){if(/^\@/&&$i==0){s/^\@/\>/;print;}elsif($i==1){s/\./N/g;print;$i=-3}$i++;}' > FILEOUT

            Just change filein and fileout as appropriate.
            Good luck.

            Comment

            • mgogol
              Senior Member
              • Mar 2008
              • 197

              #7
              Also try the fastx toolkit.

              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...
                06-18-2026, 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

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, 06-17-2026, 06:09 AM
              0 responses
              36 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-09-2026, 11:58 AM
              0 responses
              99 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-05-2026, 10:09 AM
              0 responses
              120 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-04-2026, 08:59 AM
              0 responses
              113 views
              0 reactions
              Last Post SEQadmin2  
              Working...