liftOver

功能:实现不同基因版本的转换。

下载地址:http://hgdownload.cse.ucsc.edu/admin/exe/

使用方法:【从hg18转到hg19】

liftOver  your.hg18.bed  hg18ToHg19.over.chain Hg19_Files/your.hg19.bed  Hg18_Files/unmapp_hg18.bed

  1. #!/bin/bash
  2. for file in *.bed; do
  3. newfile=${file/%.bed/_hg18.bed}
  4. unmapp_file=${file/%.bed/_Unmapped.bed}
  5. liftOver $file hg18ToHg19.over.chain Hg18_Files/$newfile Hg18_Files/$unmapp_file
  6. done
  7.  

其他资料:

http://genome.sph.umich.edu/wiki/LiftOver

http://www.cnblogs.com/foreverycc/p/3170807.html

http://hgdownload.cse.ucsc.edu/goldenpath/hg19/liftOver/

原文来自:http://www.zilhua.com/906.html

发表评论

匿名网友

拖动滑块以完成验证
加载失败