找到约 15 条结果

文章 人类癌症数据库突变注释

cosmic70: the latest COSMIC database with somatic mutations from cancer and the frequency of occurence in each subtype of cancer. For more updated cosmic, see instructions below on how to make them.icgc21: International Cancer Genome Consortium version 21 mutations.nci60: NCI-60 human tumor cell lin...

问题 你好,能否向您请教一下rbsurv包在鲁棒性检验的问题

> fit <-rbsurv(time=time, status=status, x=rust_test, method="efron", max.n.genes=20, n.iter = 10,n.fold = 3,gene.ID =row.names(rust_test)) Warning messages: 1: In fitter(X, Y, strats, offset, init, control, weights = weights,  :   Loglik converged before variable  1 ; beta may be infini...

问题 WGCNA-MAD

...# # The following setting is important, do not omit. options(stringsAsFactors = FALSE) #读取数据,删除第一列GeneSymbol datExpr = read.table(expr_file,header=T,row.names=1,comment.char = "",check.names=F) datExpr = datExpr[,-1] # Take a quick look at what is in the data set dim(datEx...

文章 IBD分析

...ep-allele-order  --allow-extra-chr --set-missing-var-ids @:## plinkawk -v OFS="\t" ' {if($1!~/#/) {print "Chr"$0} else { print}} ' filter.LD.tmp.vcf >  ibd.vcf bgzip  ibd.vcftabix ibd.vcf.gz  2. 基因型填充 java -jar /share/biosoft/beagle/beagle.jar gt=ibd.vcf.gz out=imputed_data nthr...

文章 转录本组装软件StringTie的使用说明

...otocol 发表在Nature Protocol 上“Transcript-level expression analysis of RNA-seq experiments with HISAT, StringTie and Ballgown”  其中StringTie 在组装转录本的完整度,精度和速度方面都较以往的cufflinks 有很大的提升。 StringTie 使用说明:   stringtie <i...

文章 RNA分类

1. cRNA(coding RNA)     1.1. mRNA:作为蛋白质合成模板 2. ncRNA(non-coding RNA):非编码RNA种类很多     2.1. 管家类型housekeeping         2.1.1. lncRNA(long non-coding RNA ) >200bp             2.1.1.1. tRNA:将氨基酸转运至核糖体  ...

问题 老师,这个警告问题大不大

..._viennensis.genome.2.ht2Re-opening _in1 and _in2 as input streamsReturning from GFM constructorWarning: a local graph exploded (offset: 1239040, length: 57344)Warning: a local graph exploded (offset: 68216166, length: 57344)Returning from initFromVector

问题 利用正则表达式是否可以将一列数据变成三列

类似上述数据想变成 0 \tab3,x x x x\tab3,,,,, 也就是说每三个数据做成一行,

问题 重测序

...bam \ failed with ret: 32512, going to retry. sh: -c: line 0: unexpected EOF while looking for matching `"' sh: -c: line 1: syntax error: unexpected end of file sh: -O: command not found warning, cmd: sh: -c: line 1: syntax error: unexpected end of file warning, cmd:   echo "RUN CMD: gatk --j...

文章 cactus报错:Failed to get attribute: partialOrderAlignmentProgressiveMaxRows from cactus XML

...R: ERROR: Failed to get attribute: partialOrderAlignmentProgressiveMaxRows from cactus XML 问题出在 Cactus 配置文件中缺少 partialOrderAlignmentProgressiveMaxRows 属性。这个属性控制着渐进式比对过程中允许的最大行数,是 Cactus 进行多序列比对时的一个重...

问题 RepeatMasker输出没有.divsum文件

...代码 RepeatMasker -e rmblast -gff -xsmall -html -norna   -source  -no_is -pa ${threads} -s -lib allRepeats.final.lib contig.fa# -e rmblast 指定搜索引擎为rmblast,还可以选择crossmatch、abblast或者hmmer# -species "Danio rerio" 指定物种为斑马鱼,物种名必须在NCBI物...

文章 植物嫁接砧木影响接穗代谢通路,激素等等总结

...acids that move through the graft union to affect scion growth. In support of this hypothesis, a significant number of mobile macromolecules can move through the vascular system。 Larger signalling molecules such as proteins or RNAs can also move through the graft union, and small differences in s...

问题 Docker Toolbox 命令进入虚拟机出来New state of 'nil' is invalid. 无法ROOT

文章 flowCore R包安装报错

                 from RcppExports.cpp:4: /share/work/biosoft/R/R-v4.2.0/lib64/R/library/BH/include/boost/get_pointer.hpp:48:40: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]  template<class T> T * get_pointer(std::auto_ptr&...

文章 深入理解Linux shell中2>&1的含义 标准错误输出与输入

12 在 Linux 中代表什么 在Linux系统中0 1 2是一个文件描述符 从上表看的出来,我们平时使用的 echo "hello" > t.log 其实也可以写成 echo "hello" 1> t.log 关于2>&1的含义 关于输入/输出重定向本文就不细说了,不懂的...