Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

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

  • #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


    • #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


      • #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


        • #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


          • #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


            • #7
              Also try the fastx toolkit.

              Comment

              Latest Articles

              Collapse

              • seqadmin
                Recent Advances in Sequencing Analysis Tools
                by seqadmin


                The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
                05-06-2024, 07:48 AM
              • seqadmin
                Essential Discoveries and Tools in Epitranscriptomics
                by seqadmin




                The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                04-22-2024, 07:01 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, 05-10-2024, 06:35 AM
              0 responses
              16 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 05-09-2024, 02:46 PM
              0 responses
              21 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 05-07-2024, 06:57 AM
              0 responses
              19 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 05-06-2024, 07:17 AM
              0 responses
              21 views
              0 likes
              Last Post seqadmin  
              Working...
              X