Posts

WELCOME TO BIOINFO DATA BLOQ CODEQUEST

Welcome to "Bioinfo Data BloQ CodeQuest,"  is your go-to source for ready-to-use code snippets, scripts, and workflows to help you navigate bioinformatics with confidence. Whether you're working with biomolecular databases, handling big data, or diving into computational biology, we provide practical coding solutions tailored for beginners and beyond. This blog is more than just a resource—it's a community where researchers, students, and enthusiasts can connect, share ideas, and learn together. Whether you're just starting or looking to refine your skills, we break down complex bioinformatics tools and workflows into simple, actionable steps. TARGET AUDIENCE We started this blog to make complex bioinformatics data and resources easier to understand and access. "Bioinfo Data BloQ  CodeQuest, " is for researchers, students, or individuals curious about data-driven biology. Feel free to ask any questions related to bioinformatics approaches. Thank you.
 A. Treatment of Sequences No. 1 #Extract FASTA Sequences from another file using sequence IDs in another file #Write two separate scripts with file names FastaToTbl and TblToFasta with the following content: FastaToTbl: #!/usr/bin/awk -f {         if (substr($1,1,1)==">")         if (NR>1)                     printf "\n%s\t", substr($0,2,length($0)-1)         else              printf "%s\t", substr($0,2,length($0)-1)         else                  printf "%s", $0 }END{printf "\n"} TblToFasta: #! /usr/bin/awk -f {   sequence=$NF   ls = length(sequence)   is = 1   fld  = 1   while (fld < NF)   {      if (fld == 1){printf ">"}      printf "%s " , $fld      if (fld == NF-1)     ...