Recherche de tag: fastq


From FastQ to Fasta format [Bash]

04.10.2018     mathildefog      bash fastq fasta 

  Transforme un ficher fastq en fichier fasta.
cat myFile.fastq | paste - - - - | sed 's/^@/>/g'| cut -f1-2 | tr '\t' '\n' > myFile.fasta
5/5 - [2 ratings]