Accueil
Recherche
RSS
Identification
Détails de snippet
From FastQ to Fasta format[Bash]
2018-10-04 10:15:55
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 - [ rating]