专业小笔记
细雨春风
这个作者很懒,什么都没留下…
展开
-
一个比较代码差异的好网站diffchecker
一个比较代码差异的好网站https://www.diffchecker.com/原创 2019-12-04 09:53:00 · 1278 阅读 · 0 评论 -
grep -rn 查找及批量替换
grep -rn可以关键词查找符合条件的文件的行;去重文件名,然后xargs替换模式grep -rn "xxx" . |cut -d ':' -f 1 |sort |uniq |xargs sed -i 's/xxx /yyy/g'原创 2019-10-11 11:09:34 · 14426 阅读 · 0 评论 -
/lib/ld-linux.so.2: bad ELF interpreter
原因是64位系统使用了32位的软件,解决方法网上有很多就是重新安装 glibc的i686 ,然后export LD_LIBRARY_PATH;不过这个用一次就会无效;查询其它网页发现root安装这个时候有个依赖也会一同安装:nss-softokn-freebl 的i686版本同样安装后 export,然后就可以生效了普通用户安装rpm2cpio xxx....原创 2019-10-10 09:05:26 · 205 阅读 · 0 评论 -
awk 多条件判断
awk '{if (NR==2){print $0/4}else if(NR==4){print $0/4} else {print}}' xxx.txt原创 2019-10-09 13:12:13 · 10880 阅读 · 0 评论 -
dos2unix
大早上发现自己的程序挂了,然后捣鼓半天发现脚本的格式不对,然后喘一口气,来个格式转换将当前路径下的所以的文件都变为unix格式find . -name "*" | xargs dos2unix...原创 2019-09-28 10:45:41 · 229 阅读 · 0 评论 -
hg38 resource bundle google cloud download links
https://software.broadinstitute.org/gatk/download/bundle通过GATK的resource bundle 下载hg38数据总是提示超过最大连接数(FileZilla)搭上梯子去Google cloud 存储里,查找到这些文件的下载地址,不过还是需要能外网才能下载到,让我又怀念以前的VPN了https://console.cloud...原创 2019-04-11 00:55:49 · 2120 阅读 · 2 评论 -
imputation in genetics 小笔记
1. 来自wiki的定义如下:Imputation in genetics refers to the statistical inference of unobserved genotypes.[1] It is achieved by using known haplotypes in a population, for instance from the HapMap or the 10...原创 2019-01-28 19:52:26 · 657 阅读 · 2 评论 -
干细胞 通路 小笔记
1. http://www.sinobiological.com/stem-cell-signaling-pathways-r0568.html 主要是 hedgehog Signaling Pathway ; Notch Signaling Pathway; TGF-beta Pathway; Wnt Signaling Pathway以及相应产品的蛋白质,抗体,CDNA clone,E...原创 2019-01-27 15:08:51 · 185 阅读 · 0 评论 -
质谱流式细胞技术 小笔记
1. 一篇文章关于 mass cytometry 的文章A Continuous Molecular Roadmap to iPSC Reprogramming through Progression Analysis of Single-Cell Mass CytometryEli https://www.cytobank.org/ 2. http://www.sohu.c...原创 2019-01-21 19:56:12 · 3239 阅读 · 0 评论 -
干细胞相关的数据库 小笔记
大部分还是转录组数据,可供查询,HipSci 数据可以下载。 StemMapper Gene expression data http://stemmapper.sysbiolab.eu/ ESCD CHIP seq & Expression data https:/...原创 2019-01-19 17:31:54 · 1171 阅读 · 0 评论 -
冠心病与心肌梗死的区别 小笔记
1. Is Coronary Atherosclerosis One Disease or Many? https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5395046/ Perhaps CAD patients, currently lumped together in the guidelines and minds of clinician...原创 2019-01-18 16:53:08 · 357 阅读 · 0 评论