上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: [上一篇](https://www.cnblogs.com/mmtinfo/p/16842120.html)博文中写到出了这个小工具,现在更新到0.2.5了,新增了一些子命令。有seqtk,seqkit等好用的工具珠玉在前,还写这个主要是学习和熟悉rust这门语言的基础语法了,写出来自己玩儿咯。 # 阅读全文
posted @ 2023-09-06 20:27 天使不设防 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 在目录 C:\Users\用户名\AppData\Roaming下新建目录 pip,并在pip目录中新建文件pip.ini,文件内容为: ``` [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple ``` 速度起飞…… 阅读全文
posted @ 2023-07-17 16:34 天使不设防 阅读(79) 评论(0) 推荐(0) 编辑
摘要: web url: https://earray.chem.agilent.com/suredesign/index.htm 登录后下载 ![image](https://img2023.cnblogs.com/blog/1870934/202307/1870934-20230710144054905 阅读全文
posted @ 2023-07-10 14:41 天使不设防 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # 中国人群队列研究汇总 #### 女娲基因组(2020年) * 群体规模:2999人 * 数据类型:位点注释数据(hg38 含有糖尿病患者);数据未开放下载,按区域/位点/基因 可在线查询 * 资源:[女娲基因组资源 (ibp.ac.cn)](http://bigdata.ibp.ac.cn/Ny 阅读全文
posted @ 2023-06-16 16:17 天使不设防 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 在本地使用blastn做序列比对时,若序列长度太短,比如长度不足30bp,是不会有任何比对结果输出的,之前也遇到过这个问题。今天逛论坛看到了,解决办法是指定参数-task,执行网页blast模式,亲测可用。 eg : blastn -query test.fa -db db_blast -evalu 阅读全文
posted @ 2023-04-23 10:00 天使不设防 阅读(109) 评论(0) 推荐(0) 编辑
摘要: datasets NCBI出品跨平台轻松批量从数据库中下载数据的命令行工具 指南: 工具处于快速更新迭代阶段,正逐步添加新功能,,参考网址:https://www.ncbi.nlm.nih.gov/datasets/docs/v1/how-tos/ 安装: curl -o datasets 'htt 阅读全文
posted @ 2023-04-19 10:50 天使不设防 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 秩和检验: 用于比较两组独立样本的中位数是否有明显差异。它不需要对数据的分布进行任何假设,适用于任何两组样本大小相等或不等、符合连续性变量的情况。 在进行 Mann-Whitney U 检验时,需要根据研究问题确定备择假设类型来选择使用双侧检验还是单侧检验。 如果没有明确的预测或假设关于哪个样本的中 阅读全文
posted @ 2023-04-12 14:03 天使不设防 阅读(365) 评论(0) 推荐(0) 编辑
摘要: python 卡方检验 from scipy.stats import chisquare # 卡方检验包 import numpy as np observed = np.array([120,80]) # 观测值:200 人中吃香菜的男生120,女生80 expected = np.array( 阅读全文
posted @ 2023-04-11 21:07 天使不设防 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 以下代码是chatGPT给出的示例代码,智能AI果然NB // Define a trait for an animal trait Animal { fn make_sound(&self) -> &'static str; } // Define two structs that impleme 阅读全文
posted @ 2023-02-28 10:27 天使不设防 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 跳过空行: next if /^\s*$/; 变量内插: my $x = 1; my $y = 2; print "$x + $y = @{[ $x + $y ]}" 根据值对数组下标排序: my $max_ele_index = (sort {$data[$b] <=> $data[$a]} 0. 阅读全文
posted @ 2023-02-15 14:20 天使不设防 阅读(39) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页