- 博客(19)
- 问答 (13)
- 收藏
- 关注
原创 bioinformatics notes
1.PSSM文件中两个矩阵的含义Then the log likelihood is calculated, which are the PSSM values. These are in your first matrix (rounded down). The second matrix shows how much the values are relative from your pse...
2019-06-30 11:20:17
184
原创 linux
1.vim删除行尾^M首先用vim打开文件,然后输入::1,$s/\r//g2.vim永久行号在命令行输入:vim ~/.vimrc然后再生成的文件里写入: set number最后:qw保存
2019-06-18 11:15:38
217
原创 npz文件读取
切换路径import osos.chdir(r' ')解压import numpy as npnpz=np.load(' ')npz.files #查看有哪些数据集npz['dis'] #读取dis数据集
2019-06-13 20:37:23
9734
5
原创 用putty从linux服务器下载文件
打开psftp.exe输入open 目标地址根据提示输入用户名 密码cd到下载文件目录输入 get -r 文件名 本地目录
2019-06-02 16:49:42
3421
原创 C++正则表达式
1.头文件#include <regex>2.regex_search函数****************************注意\的方向(和中文顿号相同键)作用:匹配部分字符串string test="lala 21“;smatch result;regex expression ("lala\\s(\\d)") #expression后面没有等号cout<...
2019-05-18 21:10:32
603
原创 perl学习笔记
1.多行注释=pod 注释这是一个多行注释这是一个多行注释这是一个多行注释这是一个多行注释=cut=pod =cut 必须在行首
2019-05-09 09:09:57
252
原创 notes
1.显著性why? 有一组对立的假设,究竟选哪个?显著性帮助做出这个决策what?量化在原假设成立的条件下,能找到样本来拒绝这个假设的概率
2019-04-08 15:25:59
219
原创 NOTES:Learn Python3 The Hard Way
1.脚本:编写的程序终端: powershell.cmd2.符号#(octothorpe or pound character) 注释/除号,和?一起的3.格式化(format)my_name='Ann'print(f"Let's talk about {my_name}.")print("my name is { }.".format('Ann'))...
2019-03-22 13:00:20
169
原创 linux相关
1.VMware虚拟机安装http://c.biancheng.net/view/714.html2.linux安装http://www.runoob.com/linux/linux-install.html3.Linux 下 you need to be root to perform this command打开root权限方法:输入su,回车输入密码,回车4.安装perl指令...
2019-03-14 22:10:53
189
原创 二维vector的性质、向二维vector添加元素的方法
二维vector不一定是n*m这样的矩形vector&lt;vector&lt;int&gt;&gt; M; //添加元素的方法M.push_back(vector&lt;int&gt;());M.push_back(vector&lt;int&gt;());M[0].push_back(34);M[0].push
2019-03-04 15:47:25
6092
原创 解压包含大量重名(大小写不同)文件的压缩包的方法
1.新建一个文件夹,设置该文件夹区分大小写参考https://blog.youkuaiyun.com/jerrygou/article/details/84667232注:不需要转到文件所在的路径2.双击压缩文件,预览其内容,选中要解压缩的内容,把它解压到刚才创建的文件夹中。这样避免文件夹中包含文件夹使得区分大小写失效。...
2019-02-20 17:54:49
4883
原创 Python
1.import glob 查找指定路径下某种类型的所有文件https://www.cnblogs.com/guolei2570/p/8723221.htmlhttps://www.cnblogs.com/luminousjj/p/9359543.html2.subprocess.call 使用 执行一些命令行的命令3.pool 进程池...
2019-02-13 22:55:12
113
原创 读文件
while (infile.get(ch)) { if (ch == '\n') line++; } vector&lt;vector&lt;float&gt;&gt;contact(a, vector&lt;float&gt;(a, 0)); for (int k = 1;k &lt;= 10;k++) { int row, col
2019-01-31 17:13:37
187
原创 C++问题集
二维数组作为函数参数的方法:https://blog.youkuaiyun.com/frank_jay/article/details/58297215
2018-12-18 21:33:24
173
空空如也
html 返回上一个页面hidden属性的问题
2021-03-19
python里用fsolve解非线性方程的问题
2019-12-17
Linux批量运行没有输出文件的问题
2019-08-03
Linux sh文件中调用外部程序的问题
2019-07-25
python浮点数转化为字符串精度损失
2019-06-15
求帮助!perl大括号的含义
2019-05-12
Visual Studio2017 vector out of range
2019-04-12
Visual Studio2017 vector out of range
2019-04-12
NCBI BLAST数据库下载问题
2019-03-02
c++ 报错 vector out of the range
2019-01-30
c++ vector out of the range
2019-01-30
C++如何判断下一个读取字符的类型?
2019-01-28
Python怎么提供两种输入的方式:手动或者打开文件?
2018-12-03
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅