摘要:
ascp T l 200M i ~/.aspera/connect/etc/asperaweb_id_dsa.openssh host=ftp private.ncbi.nlm.nih.gov user=anonftp mode=recv /path/to/database . 阅读全文
摘要:
加载 rJava 包报错: 解决办法 参考:http://stackoverflow.com/questions/7019912/using the rjava package on win7 64 bit with r/7604469 7604469 阅读全文
摘要:
```
#!/usr/bin/perl use strict;
use warnings;
use Data::Dumper; my @array=qw /fm1 fm2 fm3 fm4 fm5 fm6/; print "\n\@array: @array\n\n"; my %hash;
my $key1="gene1";
my $key2="gene2"; print "\$key1:... 阅读全文
摘要:
在 Linux 下,用 unoconv 将 xls 转换成 csv。 阅读全文
摘要:
``` #!/usr/bin/perl
use strict;
use warnings; my @aa=("aa", "bb", "cc");
print "@aa\n";
my $aa_num=@aa;
print "$aa_num\n"; my %hash = ("a"=>1, "b"=>2,"c"=>3);
my @k = keys %hash;
print "@k\n"; pri... 阅读全文
摘要:
进行Blast比对,用参数 m 6 可以以列表的方式输出结果,结果中从左到右每一列的意义分别是: 阅读全文
摘要:
转载 http://blog.csdn.net/wyzxg/article/details/4971843 今天发现一台服务器的home空间满了,于是要清空无用的文件,当我删除文件后,发现可用空间没有变化 os:centos4.7 现象: 发现当前磁盘空间使用情况: [root@ticketb ~] 阅读全文
摘要:
``` cat input.txt TRINITY_DN106621_c0_g1_i1 TRINITY_DN129833_c0_g1_i2 TRINITY_DN106621_c0_g1_i1 TRINITY_DN140628_c4_g2_i2 TRINITY_DN106621_c0_g1_i1 TRINITY_DN135041_c0_g1_i1 TRINIT... 阅读全文
摘要:
``` liuhui@pine:~/bin/cufflinks-master$ ./configure --with-bam=/usr/local/include/bam checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes che... 阅读全文
摘要:
d < density(mtcars$mpg)plot(d, main="Kernel Density of Miles Per Gallon") polygon(d, col="red", border="blue") Filled Density Plot 阅读全文