最新 最热

Control-Freec:检测拷贝数变异的神器

Control-Freec 既可以检测拷贝数变异CNV,还可以分析杂合性缺失LOH。官网如下

2020-05-11
1

python中random模块功能详解(python工程狮)

用于生成一个指定范围内的随机浮点数,a, b两个参数其中一个是上限,一个是下限。如果a > b,则生成的随机数num: b <= num <= a。如果 a <b, 则 a <= num <= b....

2020-04-23
1

POJ1458(最长公共子序列)

A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = < x1, x2, …, xm > another sequence Z =...

2020-04-20
1

05-树8 File Transfer (25分)

We have a network of computers and a list of bi-directional connections. Each of these connections a

2020-04-18
1

06-图2 Saving James Bond - Easy Version (25分)

This time let us consider the situation in the movie “Live and Let Die” in which James Bond, the world’s most famous spy, was captured by a group of drug dealer...

2020-04-18
1

暑假(补) -7

并查集,在一些有N个元素的集合应用问题中,我们通常是在开始时让每个元素构成一个单元素的集合,然后按一定顺序将属于同一组的元素所在的集合合并,其间要反复查找一个元素在哪个集合中。简单的来说就是分门别类的问题。...

2020-04-16
1

暑假(补)-5

DFS全称Deep First Search,是一种遍历或搜索树或图的算法。在解决问题上,利用递归调用自身函数(这种说法好像不正确,领悟思想就好了)来实现搜索的目的。把一个事情拆解成若干个小事,来实现最终的问题。...

2020-04-16
1

二分法查找

给一有序的数组a[9]={1,2,3,4,5,6,7,8,9,},想要确定 3 的位置。

2020-04-14
0

Ubuntu音频参数设置

Ubuntu下音频相关工具pacmd :用于查看音频设备参数。具体命令如下:pacmd list-sinks pulseaudio: 关闭或启动声卡。pacmd 命令pacmd list-sinks在输出信息中查找 sample spec 关键字pulseaudio 命令关闭声卡pulseaudio ...

2020-04-02
1

RNAseq分析流程-Hisat2+Samtools+Stringtie

首先,分析RNAseq要对整个分析流程有个整体的了解: 参考https://tiramisutes.github.io/2018/12/04/ref-RNA-seq.html 详细介绍了主要用到的分析工具和流程。这里我主要介绍一下我常用的分析流程 拿到原始数据首先需要对...

2020-04-01
1