脚本

#利用awk命令将fastq文件转换成fasta文件
awk '{if(NR%4 == 1){print ">" substr($0, 2)}}{if(NR%4 == 2){print}}' file.fastq > file.fasta

你可能感兴趣的:(脚本)