Recherche de tag: fastq
From FastQ to Fasta format [Bash]

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