第8个结果
四倍体内亚基因组间的比较
##目录 allopolyploid
python ASBias.py -homolog ~/work/Alternative/result/homologo/homologGene/At_vs_Dt_collinerity.txt -AS1 ~/work/Alternative/result/Gh_result/CO31_32_result/11_AS/At_splice.txt -AS2 ~/work/Alternative/result/Gh_result/CO31_32_result/11_AS/Dt_splice.txt -C ../blast/IR/At_Dt_conserve_end -o 11 -T IntronR同源基因间AS保守程度计算
python ./conservePrecentage.py -homolog ~/work/Alternative/result/homologo/homologGene/At_vs_Dt_collinerity.txt -isform ../ASCount/IR/At_Dt_IR -AS ../blast/IR/At_Dt_conserve_end -o 1111
##转换格式
awk 'NR%2!=0{printf $0"\t"}NR%2==0{print $0}' 1111不是类型的比例
## 完全保守
awk 'NR%2!=0{printf $0"\t"}NR%2==0{print $0}' 1111 |awk '$2==1{print $0}'|wc -l
## 部分保守
awk 'NR%2!=0{printf $0"\t"}NR%2==0{print $0}' 1111 |awk '$2>0&&$2<1{print $0}'|wc -l
## 完全不保守
awk 'NR%2!=0{printf $0"\t"}NR%2==0{print $0}' 1111 |awk '$2==0{print $0}'|wc -l
## 完全不保守,并且都存在AS
awk 'NR%2!=0{printf $0"\t"}NR%2==0{print $0}' 1111 |awk '$2==0{print $0}'|awk '$3!=0&&$6!=0{print $0}'|wc -l
## 完全不保守,只有一个基因组存在AS二倍体不同亚基因组间的比较

寻找一些证据,支持同源基因间AS的差异
同源基因对应位置上的差异
Last updated