您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“怎么繪制SNP密度圖”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“怎么繪制SNP密度圖”這篇文章吧。
Rscript snp.density.map.R -i snp.vcf -n out -s 1000000 -c "darkgreen,yellow,red"
-i :跟輸入文件,格式為vcf文件;
-n :設置輸出文件名稱前綴,文件輸出到當前目錄下;
-s :設置窗口大小;
-c :設置顏色梯度,可以設置一到多種顏色,建議設置兩種或三種顏色,顏色間以 "," 分隔。
#北京組學生物科技有限公司 #email: wangq@biomics.com.cn source("https://raw.githubusercontent.com/YinLiLin/CMplot/master/R/CMplot.r") library(getopt) #+-------------------- # get options #+-------------------- spec <- matrix(c( 'help', 'h', 0, "logical", "help", 'binsize', 's', 1, "integer", "the size of bin for SNP_density plot, optional.", 'color', 'c', 1, "character", " the colour for the SNP density, separated by ',', optional.", 'name', 'n', 1, "character", "add a character to the output file name, optional.", 'input', 'i', 1, "character", "vcf input file, forced." ), byrow = TRUE, ncol = 5) opt <- getopt(spec) #+-------------------- # check options #+-------------------- if ( !is.null(opt$help) | is.null(opt$input) ) { cat(getopt(spec, usage=TRUE)) q(status=1) } if ( is.null(opt$binsize ) ) { opt$binsize = 1e6 } if ( is.null(opt$color ) ) { opt$color = "yellow,red" } if ( is.null(opt$name ) ) { opt$name = "Fig1" } #data(pig60K) data <- read.table(opt$input, comment.char = "#", header = F, blank.lines.skip = T) num <- dim(data)[1] name <- paste("A", 1:num, sep = "") snp <- data.frame(name,data[1],data[2]) colnames(snp) = c("SNP","Chromosome","Position") color <- unlist(strsplit( opt$color, split = ",")) CMplot( snp, plot.type="d", bin.size=opt$binsize, col=color, xlab = "SNP", file="jpg", dpi=300, memo=opt$name, file.output=TRUE, verbose=TRUE ) CMplot( snp, plot.type="d", bin.size=opt$binsize, col=color, file="pdf", memo=opt$name, file.output=TRUE, verbose=TRUE )
以上是“怎么繪制SNP密度圖”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。