20200320
第二个结果
cluster前后read数目
PacBio isform长度与对应的转录本的长度
awk -F "=" '$1~/^>/{print $NF"\tPacBio\tA2"}' all.collapsed.rep.fa >A2_PacBio_length.txtawk 'NR==1&&$1~/^>/{print $0}NR>=2&&$1~/^>/{print "\n"$0}$1~/^[^>]/{printf $0}' Ghirsutum_gene_transcripts.fasta|awk '$1~/^[^>]/{print length($0)"\treference\tTM-1"}'awk '{a+=$1}END{print a/NR}' A2_PacBio_length.txtPacBio isform对应exon数目与reference exon数目
isforms比对到参考基因组上
Last updated