跳至内容
售后
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
snp在染色体上的密度图
编辑本页后请点击“保存”。请参阅
syntax
了解维基语法。只有在您能
改进
该页面的前提下才编辑它。如果您想尝试一些东西,请先到
playground
热身。
媒体文件
====== 绘制SNP在染色体上的密度图 ====== <code> #!/TJPROJ6/RNA_SH/personal_dir/lizhengnan/mamba/envs/R_4.2/bin/Rscript # https://github.com/YinLiLin/CMplot #install.packages("CMplot") library(CMplot) library(tibble) library(dplyr) library(argparser) argv <- arg_parser('绘制SNP在染色体上的密度图') argv <- add_argument(argv,"--stat", help="the SNP analysis result, example:SNP/1.snpsite/*_SNP.xls") argv <- add_argument(argv,"--prefix", help="the prefix of outfile") argv <- parse_args(argv) stat <- argv$stat prefix <- argv$prefix data <- read.table(stat, sep = '\t', header = T)%>% rownames_to_column(var = 'SNP') CMplot(data,plot.type="d",bin.size=1e6, #chr.den.col=c("darkgreen", "yellow", "red"), chr.den.col=rev(rainbow(4)), file="jpg",file.name=prefix,dpi=300, chr.labels = unique(data$CHROM),chr.pos.max=T, main="SNP density",file.output=TRUE,verbose=TRUE,width=9,height=6) CMplot(data,plot.type="d",bin.size=1e6, #chr.den.col=c("darkgreen", "yellow", "red"), chr.den.col=rev(rainbow(4)), file="pdf",file.name=prefix,dpi=300, chr.labels = unique(data$CHROM),chr.pos.max=T, main="SNP density",file.output=TRUE,verbose=TRUE,width=9,height=6) </code> {{:marker_density.snp_density_test.jpg?400|}}
保存
预览
取消
编辑摘要
当您选择开始编辑本页,即寓示你同意将你贡献的内容按下列许可协议发布:
CC Attribution-Share Alike 4.0 International
snp在染色体上的密度图.txt
· 最后更改: 2024/10/10 03:33 由
lizhengnan
页面工具
显示页面
修订记录
反向链接
回到顶部