美文网首页
从基因组中提取exon,intron等

从基因组中提取exon,intron等

作者: V_b986 | 来源:发表于2022-09-18 13:21 被阅读0次

1,从gtf中提取外显子

awk 'BEGIN{OFS="\t";} $3=="exon" {print $1,$4-1,$5}' Iyun.gtf |bedtools sort |bedtools merge -i - > my_exon.bed
  1. 提取内含子
awk 'BEGIN{OFS="\t";} $3=="transcript" {print $1,$4-1,$5}' Iyun.gtf |bedtools sort |bedtools subtract -a stdin -b my_exon.bed.gz > my_intron.bed

3.网站

[GitHub - davetang/defining_genomic_regions: Define regions in the genome](https://github.com/davetang/defining_genomic_regions)

相关文章

网友评论

      本文标题:从基因组中提取exon,intron等

      本文链接:https://www.haomeiwen.com/subject/rgrportx.html