摘要:
datasets NCBI出品跨平台轻松批量从数据库中下载数据的命令行工具 指南: 工具处于快速更新迭代阶段,正逐步添加新功能,,参考网址:https://www.ncbi.nlm.nih.gov/datasets/docs/v1/how-tos/ 安装: curl -o datasets 'htt 阅读全文
摘要:
秩和检验: 用于比较两组独立样本的中位数是否有明显差异。它不需要对数据的分布进行任何假设,适用于任何两组样本大小相等或不等、符合连续性变量的情况。 在进行 Mann-Whitney U 检验时,需要根据研究问题确定备择假设类型来选择使用双侧检验还是单侧检验。 如果没有明确的预测或假设关于哪个样本的中 阅读全文
摘要:
python 卡方检验 from scipy.stats import chisquare # 卡方检验包 import numpy as np observed = np.array([120,80]) # 观测值:200 人中吃香菜的男生120,女生80 expected = np.array( 阅读全文
摘要:
以下代码是chatGPT给出的示例代码,智能AI果然NB // Define a trait for an animal trait Animal { fn make_sound(&self) -> &'static str; } // Define two structs that impleme 阅读全文
摘要:
工具: B站视频下载工具:https://github.com/leiurayer/downkyi OBS录屏工具:https://obsproject.com/zh-cn window 系统激活工具:https://github.com/massgravel/Microsoft-Activatio 阅读全文
摘要:
双端测序数据barcode拆分工具 目前只支持单barcode拆分 支持gz压缩文件输入输入 参数支持barcode碱基容错 支持一个样本对应多个barcode repo : github : https://github.com/sharkLoc/fqkit.git install : cargo 阅读全文
摘要:
相关工具: https://github.com/adaptivegenome/repeatseq https://github.com/DecodeGenetics/popSTR https://www.ruhr-uni-bochum.de/spezzoo/cm/cm_phobos.htm htt 阅读全文
摘要:
今天尝试用perl来画一个简单的图,根据数据我们这里画线图。使用的模块是SVG::TT::Graph,两年前更新过,相比perl模块动不动十几年没有新版本,这个模块算不错了,出图格式为SVG格式。 cpan仓库地址: https://metacpan.org/pod/SVG::TT::Graph:: 阅读全文
摘要:
perl脚本加密 这里只针对单个文件的perl程序做展示。 pp:https://metacpan.org/pod/pp PAR:https://metacpan.org/pod/PAR 模块安装: cpanm pp cpanm PAR::Filter::Crypto 编译加密: linux: pp 阅读全文