找到约 15 条结果

问题 fastq-dump下载问题?

...lem persists, you may consider sending the file to 'sra@ncbi.nlm.nih.gov' for assistance. =============================================================

文章 deseq_analysis.r 差异基因分析DESeq2

...l, default: 1] -X x.lab, --x.lab x.lab the label for x axis [optional, default: log2FC] -Y y.lab, --y.lab y.lab the label for y axis [optional, default: -log10(FDR)] -T title, --title title the label for main title [option...

文章 qiime自带的alpha_diversity.py脚本报错

...2.7-linux-x86_64.egg/skbio/diversity/alpha/_ace.py", line 70, in ace raise ValueError("The only rare OTUs are singletons, so the ACE " ValueError: The only rare OTUs are singletons, so the ACE metric is undefined. EstimateS suggests using bias-corrected Chao1 instead. 这是因为ace指数通...

文章 保姆式教程!手把手教你使用Simplot,绘制高大上的序列相似性图片

...savirus in monkey rectal swab and throat swab specimens in China: Proposal for Posaliviridae as a new family in Picornavirales》; Han Z, Song Y, Xiao J, Zhao X, Lu H, Zhang K, Jia S, Zhou J, Li J, Si F, Sun Q, Zhu S, Wang D, Yan D, Xu W, Fu X, Zhang Y. Monsavirus in monkey rectal swab and throat...

文章 NCBI 下载病毒基因组的gff3

NCBI (National Center for Biotechnology Information),是我们经常使用的数据库,其本身在数据以外也为我们提供了很多好用的小工具。病毒的基因组比较小,通常不会像大型基因组那样释放的时候带有gff3和gtf文件,此时如果我们想获得病...

问题 SNP过滤de问题

... filtering, kept 0 out of a possible 40089272 Sites       No data left for analysis!       Run Time = 2539.00 seconds 求助一下

文章 R批量读取文件

...A 1> 把文件的名字(前缀)赋给每个读取到的数据 > for (i in 1:length(ABC)){+ assign(make.names(gsub(".txt","",tem[i])),data.frame(ABC[[i]]))+ }> A V1 V21 A 1> B V1 V21 B 2> C V1 V21 C 3

文章 ggalluvial 展示ceRNA调控关系

...analysis of a ceRNA network to reveal potential prognostic biomarkers for hepatocellular carcinoma.

问题 无法链接到docker守护进程

...错:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 我检查docker运行状态显示正在运行: docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) A...

问题 无法链接到docker守护进程

...错:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 我检查docker运行状态显示正在运行: docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) A...

问题 泛基因组核心基因和可变基因长度比较core_pan_gene_compare.r报错

运行core_pan_gene_compare.r ,报错Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]]) : contrasts can be applied only to factors with 2 or more levels Calls: aov ... model.matrix.terms -> model.matrix.default -> contrasts<- Execution halted。我在泛基因组分类的...

问题 dadi 分析中根据基因组创建annovar库出现报错

[root@30b37d57431e  00:02:31 /work/3.map/dadi]# gtfToGenePred -genePredExt /work/ref/Bamboo.Hic.gtf  unknown_refGene.txt conflicting frame for PH02Gene38416.t1 exon index 0, was 0, trying to assign 2

文章 一些常见R代码的报错和解决办法

...able),或在硬件上增加内存。 Error: package ‘XYZ’ 1.2.3 is required by ‘somePackage’ but will not be installed R的生态系统包含大量的扩展包,这些包彼此之间可能有依赖关系。有时,一个包需要的依赖包版本与另一个包需要的版本不...

文章 MEGA构建进化树遇到报错信息

...with this analysis:Some pairwise distances could not be estimated.For example,between sequences 23 and 11.  这是因为你的序列差异太大,无法构建进化树,应当将序列差异较大的gap给删除掉,再进行进化树分析,如下图所示: 当然手动删除...

文章 Linux单行命令

...列进行数字排序。 常用的命令 awk '{ count[$1] += $2 } END { for (key in count) { print key, count[key] } }' myfile       #根据特定列进行分组计算 比如我生成一个实例文件myfile 执行上面的命令