摘要: 传统的全基因组关联分析(GWAS)计算的是单个SNP与表型的相关性,除此之外,我们还可以进行SNP之间的互作效应与表型的相关性分析。 上位效应的公式为:Y ~ b0 + b1.A + b2.B + b3.AB + e Y为表型,A和B分别为两个变异位点,在GWAS中通常指SNP,如果b3为显著,则说 阅读全文
posted @ 2023-10-15 10:21 emanlee 阅读(58) 评论(0) 推荐(0) 编辑
摘要: perl判断字符串包含 perl中没有判断字符串包含的函数,可以用正则表达式来实现这个功能,下面代码判断$str1是否包含$str2。 if($str1 =~/$str2/) { ...} if ($str1 !~/str2/) { #匹配了不包含的 }else { #匹配了包含的 } 阅读全文
posted @ 2023-10-15 10:19 emanlee 阅读(79) 评论(0) 推荐(0) 编辑
摘要: $animal = "camel" syntax error at ReadCount.V3.pl line 15, near "my "Global symbol "%RnaEdits" requires explicit package name at ReadCount.V3.pl line 阅读全文
posted @ 2023-10-15 10:18 emanlee 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 用-d命令行选项启动Perl解释器,例如 perl -d test.pl 即进入Perl调试器的交互界面。 调试命令如下:(所有命令都在调试提示符下顶格输入,命令要区分大小写) h:显示调试器的帮助信息。 |h:以分页形式显示调试器的帮助信息。 h h:显示一个简要的帮助信息。 h 调试命令:显示某 阅读全文
posted @ 2023-10-15 10:17 emanlee 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Django Nginx+uwsgi 安装配置 在前面的章节中我们使用 python manage.py runserver 来运行服务器。这只适用测试环境中使用。 正式发布的服务,我们需要一个可以稳定而持续的服务器,比如apache, Nginx, lighttpd等,本文将以 Nginx 为例。 阅读全文
posted @ 2023-10-15 10:08 emanlee 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Win10 Win 10不记得开机密码 这个(https://zhidao.baidu.com/question/376236858295220644.html)介绍了两种方法。先可以试一下第一种方法。第一种方法的思路是添加一个管理员级别的账号,用这个新的账号修改以前系统的账号。第二种方法的思路是用 阅读全文
posted @ 2023-10-15 10:08 emanlee 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Apache Shiro(发音为shee-roh,日语堡垒(Castle)的意思)是一个强大易用的Java安全框架,提供了认证、授权、加密和会话管理功能,可为任何应用提供安全保障 - 从命令行应用、移动应用到大型网络及企业应用。相较于Spring Security来说较为简单,易于上手。 可以非常容 阅读全文
posted @ 2023-10-15 10:07 emanlee 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Kafka是分布式发布-订阅消息系统,它最初由 LinkedIn 公司开发,使用 Scala语言编写,之后成为 Apache 项目的一部分。在Kafka集群中,没有“中心主节点”的概念,集群中所有的服务器都是对等的,因此,可以在不做任何配置的更改的情况下实现服务器的的添加与删除,同样的消息的生产者和 阅读全文
posted @ 2023-10-15 10:07 emanlee 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 远程控制:TeamViewer无人值守 一、安装TeamViewer 1.安装 二、设置TeamViewer无人值守 1.打开TeamViewer 2.选择 【其他】-【选项】 3.选择 【常规】 4. [√] 勾选【随Windows一同启动TeamViewer】 设置一个密码(必须),用于密码连接 阅读全文
posted @ 2023-10-15 10:05 emanlee 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 安装 git 准备好文件夹 E:\_prjct\boshi_xinxi_caiji\codes2 启动 git bash $ pwd/E/_prjct/boshi_xinxi_caiji/codes2 $ git clone https://gitee.com/xautstar/doctoral-d 阅读全文
posted @ 2023-10-15 10:05 emanlee 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 参考资料: https://segmentfault.com/a/1190000011673663 Unpacking objects: 62% (5/8) 原因:被 qiang 0x01 Git 配置 1. 在安装完成 Git 后,开始正式使用前,是需要有一些全局设置的,如用户名、邮箱。 设置的主 阅读全文
posted @ 2023-10-15 10:03 emanlee 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 重启机器进入BIOS,还原BIOS默认设置。 具体操作:开机,按del进入BIOS,选择Exit下Load Setup Defaults,回车,Yes,F10保存退出 将【Boot-Mode】修改为UEFI https://blog.csdn.net/u011389297/article 阅读全文
posted @ 2023-10-15 09:59 emanlee 阅读(179) 评论(0) 推荐(0) 编辑
摘要: How can I change the reference numbers in manuscript to blue color? I am working in Word 2010 and EndNote X7. I want to change the color of citations 阅读全文
posted @ 2023-10-15 09:59 emanlee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: new_df <- df[ order(row.names(df)), ]REF:https://stackoverflow.com/questions/20295787/how-can-i-use-the-row-names-attribute-to-order-the-rows-of-my-da 阅读全文
posted @ 2023-10-15 09:58 emanlee 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # first remember the names n <- df.aree$name # transpose all but the first column (name) df.aree <- as.data.frame(t(df.aree[,-1])) colnames(df.aree) < 阅读全文
posted @ 2023-10-15 09:58 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: So there is no na.action argument for the form you used, and your 'na.omit' matches 'retx'. Try prcomp(~ ., data=ot, na.action=na.omit, scale=TRUE) or 阅读全文
posted @ 2023-10-15 09:58 emanlee 阅读(21) 评论(0) 推荐(0) 编辑
摘要: # 创建data.frame student<-data.frame(ID=c(11,12,13),Name=c("Devin","Edward","Wenli"),Gender=c("M","M","F"),Birthdate=c("1984-12-29","1983-5-6","1986-8-8 阅读全文
posted @ 2023-10-15 09:57 emanlee 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 本文对核方法(kernel method)进行简要的介绍(https://www.jianshu.com/p/8e2649a435c4)。 核方法的主要思想是基于这样一个假设:“在低维空间中不能线性分割的点集,通过转化为高维空间中的点集时,很有可能变为线性可分的” ,例如下图 左图的两类数据要想在一 阅读全文
posted @ 2023-10-15 09:57 emanlee 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 完整的卸载MySQL 5.1的卸载方法: 1、控制面板里的增加删除程序内进行删除 2、删除MySQL文件夹下的my.ini文件,如果备份好,可以直接将文件夹全部删除 3、开始->运行-> regedit 看看注册表里这几个地方删除没有 HKEY_LOCAL_MACHINE\SYSTEM\Contro 阅读全文
posted @ 2023-10-15 09:50 emanlee 阅读(35) 评论(0) 推荐(0) 编辑
摘要: vi /etc/gbrowse2_dspsp/GBrowse.conf # Performance settingsslave_timeout = 45global_timeout = 60search_timeout = 15 REF: http://generic-model-organism- 阅读全文
posted @ 2023-10-15 09:50 emanlee 阅读(5) 评论(0) 推荐(0) 编辑