Super-Enhancer Introduction
Super-Enhancer Reference Super-enhancer function and its application in cancer targeted therapy The molecular understanding of super-enhancer dysregul ...
Read more
scRNA-10X Genomics Introduction
10X Genomics
Read more
PK-Sim构建PBPK模型
生理药代动力学PBPK生理药代动力学PBPK(Physiologically based pharmacokinetic)是一种以系列数学方程式整合药物的理化性质、机体真实的生理生化性质和解剖学结构等信息,以表征药物通过血液循环系统在不同器官和组织中分布、转运和消除的过程,从而实现预测药物体内动力学 ...
Read more
Vue使用
安装及使用Vue 安装vue-cli脚手架: npm install -g @vue/cli 创建vue项目: vue create project_name 启动项目: npm run serve 打包项目: npm run build 安装包: npm install element-ui -- ...
Read more
Hexo+Github-Pages搭建个人博客
Windows安装Node.js安装Node.js Node.js下载地址: https://nodejs.org/en 测试是否安装成功: npm -v 配置模块和cache路径 全局模块路径: npm config set prefix "D:\software\nodejs\nod ...
Read more
Markdown基础语法
Markdown基础语法 元素 语法 标题 # h1 ## h2 ### h3 有序列表 1. item1 2. item2 无序列表 - item1 或 * item2 引用 > content 代码 `code` 代码块 ```code ...
Read more
Linux安装Nginx及使用
编译安装 Nginx下载地址: http://nginx.org/en/download.html 编译安装:123./configure --with-http_stub_status_module --with-http_ssl_modulemakemake install Nginx启动 启 ...
Read more
Thymeleaf模板引擎
th属性 th:text 文本替换 th:value 值替换 th:object 父标签选择对象,子标签使用*{}取值 123<div th:object="${session.user}"> <p th:text="*& ...
Read more
SpringBoot各层写法
Controller控制层用于处理前端请求并返回结果 123456789101112131415161718192021@RestController@RequestMapping("/task")public class TaskController { @Re ...
Read more
SpringBoot注解使用
基本注解(注解在类上) @Controller: 控制层 @Mapper: 数据库接口 @Service: 业务层 实体类自动生成set/get方法的注解 @Data (需要添加lombok的依赖) 自动注入的注解12@AutowiredTestMapper testMapper ...
Read more