Chinaunix首页 | 论坛 | 博客
  • 博客访问: 80272
  • 博文数量: 36
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 0
  • 用 户 组: 普通用户
  • 注册时间: 2016-07-28 10:06
个人简介

安徽屯溪,哈尔滨的雪地,扬州的瘦西湖,想必知道我是谁了吧!!对,小金思密达

文章分类

全部博文(36)

文章存档

2015年(7)

2014年(29)

我的朋友

发布时间:2014-10-22 15:52:44

#!/usr/bin/perl -wprint"input your file,then press Enter!\n";my $file=<STDIN>;open FILE,"$file";open OUT,">result";  while (<FILE>){      chomp;      if(/>/){          $head=$_;      }else{$.........【阅读全文】

阅读(1248) | 评论(0) | 转发(0)

发布时间:2014-10-22 10:11:49

#!/usr/bin/perl -wprint"input seq_1,press Enter!\n";$seq_1=<STDIN>;open ONE,"$seq_1";print"input seq_2,press Enter!\n";$seq_2=<STDIN>;open TWO,"$seq_2";   while (<ONE>){       chomp;       if (/>/){      &nbs.........【阅读全文】

阅读(1225) | 评论(0) | 转发(0)

发布时间:2014-10-19 11:15:14

如果统计fastq序列的GC含量只需稍微改变一下即可!......【阅读全文】

阅读(1959) | 评论(0) | 转发(0)

发布时间:2014-10-14 12:43:17

windows:Copy *.txt  result.txt   ###首字母大写Linux: cat  *.txt  >result.txt    ### >输出符合带上......【阅读全文】

阅读(1080) | 评论(0) | 转发(0)

发布时间:2014-10-06 17:27:04

seq_microRNA = fasta read (' mir156.fa');n = length (seq_mircroRAN);   k = 1;for i = 1:n;k=k + 1;[A,B,D] = rnafold (seq_mirna (i), sequence);L = length (seq_mirna(i), sequence);AMFE = B/L;C = dimercount (seq_mirrna(i), sequence);GC = C.GC/(L-1);MFEI(i) = AMFE/GC;end......【阅读全文】

阅读(2159) | 评论(0) | 转发(0)

发布时间:2014-10-04 21:01:05

A FASTQ file normally uses four lines per sequence.Line 1 begins with a '@' character and is followed by a sequence identifier and an optional description (like a FASTA title line).Line 2 is the raw sequence letters.Line 3 begins with a '+' character and is optionally followed.........【阅读全文】

阅读(859) | 评论(0) | 转发(0)

发布时间:2014-10-04 18:28:32

说明:tophat是基于bowtie的fix_map_ordering: fix_map_ordering [--sam-header ] []prep_reads: prep_reads [--filter-multi ] [,..] [ [......【阅读全文】

阅读(1902) | 评论(0) | 转发(0)

发布时间:2014-10-02 16:22:38

awk运行效率高,代码简单,对格式化的文本处理能力超强。grep|sed|awk|bash|shell|python例子数据:0.0001 10   1#.00 10   ..10.0  11awk 'BEGIN{total = 0;len = 0} {if($1~/^[0-9]+\.[0-9]*/){total += $1; len++}}END{print total/len}' aawk的语法:awk [-F re] [para.........【阅读全文】

阅读(685) | 评论(0) | 转发(0)

发布时间:2014-10-01 10:32:51

地址:http://circos.ca/software/download/核心文件:circos-x. tgz,还有tools,tutorials,course解压:tar –zxvf circos-x.tgz  权限:chmod 777 file | chmod +x file例子:windows:perl bin\circos –conf example\etc\circos.conf      Linux :perl bin/cir.........【阅读全文】

阅读(574) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册