找到约 15 条结果

文章 vim显示行号、跳转到指定行或列

...r,是vim普通模式下用于跳转到当前行某一列的一个命令 (To screen column [count] in the current line),| 表示当前行的第0列 (行首) (2)正常模式下输入命令 $ 跳转光标到当前行的行尾; (3)正常模式下输入vim命令 0nl 或 n| 跳转到当前行...

文章 如何预测蛋白质保守结构域?-InterPro在线工具使用详解

...ID、GO term ID、关键词等。3. 按结构域查找:点击Add Domain to include按钮,填写结构域Pfam ID,即可查询Pfam数据库中含该结构域的蛋白,并且还可以通过点击Add Domain to exclude按钮,添加不包含某结构域条件进行快速筛选。结果展示Inte...

问题 R分析KEGG报错两处:绘制富集的pathway和KEGG富集结果气泡图

...保存 > setwd(paste(work_dir,"KEGG",sep="/")) > write.table(kegg, file = "KEGG_enrichment_stat.txt",sep="\t", row.names =F, quote = F) > #KEGG富集结果气泡图 > pdf(file = "kegg_dotplot.pdf",width=24, height=18) > dotplot(kegg,title="Enrichment KEGG_dot") wrong orderBy par...

文章 ls常用参数及ls只列出部分目录或文件

...令1: ls -al | grep "^d" 命令2: ls -F | grep "/$" -F 文件类型(File type):-F可以在每一个列举项目之后添加一个符号,例如:/ 表明是一个目录;@ 表明是到其它文件的符号链接;* 表明是一个可执行文件 2.只显示文件 ls -al | grep "^-"...

问题 MUMmer共线性分析报错suffix tree construction failed: textlen=712946597 larger than maximal textlen=536870908

...: PREPARING DATA 2,3: RUNNING mummer AND CREATING CLUSTERS # reading input file "nucmer.ntref" of length 712946597 # construct suffix tree for sequence of length 712946597 # (maximum reference length is 536870908) # (maximum query length is 4294967295) # process 7129465 characters per dot /usr/bin/m...

文章 docker pull下载镜像出现:error pulling image configuration: received unexpected HTTP status: 500 Internal Server Error

...镜像是出现网络错误,或者下载很缓慢: [root@VM_0_16_centos ~]# docker pull docker.io/omicsclass/gene-familyUsing default tag: latestTrying to pull repository docker.io/omicsclass/gene-family ...latest: Pulling from docker.io/omicsclass/gene-familyab5ef0e58194: Already exists3afe06e...

文章 barplot()R语言绘制状图

...ader = T,row.names = 1,sep="\t")d<-as.matrix(t(d))barplot(d)box("l")pdf(file = "bar.pdf",h=7,w=14)cc=c("#e41a1c","#377eb8","#4daf4a")par(mar=c(5,20,4,2))p=barplot(d,beside = TRUE,width = 1,xlab = "Relative abundance",bty = "n", col = cc,border = NA,horiz = T,xaxs="i",names.arg = NULL,axisnames=F)...

文章 鉴定组装植物病毒——系统详尽的植物病毒学!

...编就看了一本系统详尽讲述植物病毒的书-Plant Virology Protocols(文末有获取方式),堪称病毒学研究里程碑式巨制。 书本主要内容 此书共20章,共289页,前6章内容主要介绍病毒检测及鉴定的技术方法,包括微阵列芯片、RT-...

问题 docker pull下载镜像出现:error pulling image configuration: received unexpected HTTP status: 500 Internal Server Error

...镜像是出现网络错误,或者下载很缓慢: [root@VM_0_16_centos ~]# docker pull docker.io/omicsclass/gene-familyUsing default tag: latestTrying to pull repository docker.io/omicsclass/gene-family ...latest: Pulling from docker.io/omicsclass/gene-familyab5ef0e58194: Already exists3afe06e...

问题 是没有gene-family了嘛

PS C:\Users\Administrator> docker pull omicsclass/gene-family:v1.0.1 What's next:     View a summary of image vulnerabilities and recommendations → docker scout quickview omicsclass/gene-family:v1.0.1 Error response from daemon: pull access denied for omicsclass/gene-family, repository d...

文章 Rstudio 防止中文乱码(保存与显示)

... 有时Rstudio默认的文件打开编码格式不是UTF-8,可以通过File——Reopen with Encoding,修改显示文件的编码格式。 更多生物信息课程: 1. 文章越来越难发?是你没发现新思路,基因家族分析发2-4分文章简单快速,学习链接...

文章 Perl方法对文档全文进行字符串对应替换

...dlist for changing############### open(IN,"$opts{idlist}")|| die "open ID file failed\n"; while(<IN>){ chomp; my($newID,$gene)=split(/\s+/,$_); if($gff=~/$gene/){ $gff=~ s/$gene/$newID/g; } } close(IN); #####################print out new gff####################### ope...

文章 植物单细胞转录组文章

...迫 Zhu, M., Hsu, CW., Peralta Ogorek, L.L. et al. Single-cell transcriptomics reveal how root tissues adapt to soil stress. Nature (2025). https://doi.org/10.1038/s41586-025-08941-z 研究发现,植物根部通过单细胞层面的基因调控适应不同土壤环境。利用单细胞 RNA...

文章 Graphpad Prism一张图中绘制多个直方图

...有直方图数据放在Data Tables 下,打开新的Data Table方法为 "File" 下 "打开"  ->  "New Data table and..."。 2.数据填好后,双击"Layouts" 选择布局方式。 选中后界面中会出现三个方框,如下图所示: 我们可以直接将直方图拖到对...

文章 python 读取kegg绘图配置文件中的kgml文件内容

...codecsimport uuidfrom PIL import ImageBin=os.path.split(os.path.realpath(__file__))[0]     ########################################################################## dom = xml.dom.minidom.parse(sys.argv[1])root = dom.documentElementff=open(sys.argv[2],"w")if root.nodeName=='pathway':    for i i...