上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: ```/home/liuhui/bin/trinityrnaseq_r20140413p1/util/support_scripts/get_Trinity_gene_to_trans_map.pl Trinity.fasta > Trinity.fasta_trans_mapbowtie-bui... 阅读全文
posted @ 2015-07-29 22:35 liuhui_pine 阅读(393) 评论(0) 推荐(0) 编辑
摘要: https://www.biostars.org/p/6544/ 阅读全文
posted @ 2015-07-10 21:21 liuhui_pine 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 箭头操作符有两种用法。* 第一种用法是访问引用中的数据元素:```#!/usr/bin/perl -wuse strict;my @a = (5, 6, 7,9);my $aref = \@a;print $aref, "\n"; # ARRAY(0xbcac08)print $aref... 阅读全文
posted @ 2015-07-09 20:02 liuhui_pine 阅读(522) 评论(0) 推荐(0) 编辑
摘要: ```#!/usr/bin/perl -wuse strict;my $someURL = 'http://www.perl.com';my $html = Perl HomepageEOF#open (DATAFILE, ">data.file") || die "Could not open '... 阅读全文
posted @ 2015-07-09 15:18 liuhui_pine 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 转自 http://net.pku.edu.cn/~yhf/tutorial/perl/perl_13.html拓展阅读 http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=770196## Perl 的面向对象编程### 1. 创建类####... 阅读全文
posted @ 2015-07-08 23:08 liuhui_pine 阅读(827) 评论(0) 推荐(0) 编辑
摘要: plenv global 5.8.3 阅读全文
posted @ 2015-07-08 16:31 liuhui_pine 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ```#!/usr/bin/perl -wuse strict;my $test_1 = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";my $test_2 = "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT";my %hash;$hash{key} = $t... 阅读全文
posted @ 2015-07-07 19:22 liuhui_pine 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 参考 http://blog.chinaunix.net/uid-1919528-id-2792055.htmlsplit 函数的正规语法应该是:```split /PATTERN/, EXPR```而使用单引号(或者双引号)来分隔空格(whitespace)是一种特殊的例子:```As a spe... 阅读全文
posted @ 2015-07-07 13:10 liuhui_pine 阅读(998) 评论(0) 推荐(0) 编辑
摘要: test_1.pl```#/usr/bin/perl -wuse strict;print add(1,2),"\n";sub add { my ($x,$y) = @_; return $x + $y; # When Perl reaches any return statement it... 阅读全文
posted @ 2015-07-06 10:02 liuhui_pine 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 参考 http://www.perlcn.com/perlbc/perljc/315.html使用reverse操作符时,perl会先计算变量的值,也就是=右边的值,然后再进行复制,如果reverse是将值赋给新的数组,那么原来的变量的值是不变的,如果将值赋给本身,则会改变变量的值,如果不复制给任何... 阅读全文
posted @ 2015-07-05 10:03 liuhui_pine 阅读(2094) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页