zoukankan      html  css  js  c++  java
  • 统计碱基数目、GC含量、read数、最长的read、最短的read及平均read长度

    # 用于fasta格式文件的碱基数目和GC含量的统计

    grep -v '>' input.fa| perl -ne  '{$count_A=$count_A+($_=~tr/A//);$count_T=$count_T+($_=~tr/T//);$count_G=$count_G+($_=~tr/G//);$count_C=$count_C+($_=~tr/C//);$count_N=$count_N+($_=~tr/N//)};END{print qq{total count is },$count_A+$count_T+$count_G+$count_C+$count_N, qq{ GC%:},($count_G+$count_C)/($count_A+$count_T+$count_G+$count_C+$cont_N),qq{ } }'

    # 用于fastq格式文件的read数、碱基数、最长的read、最短的read及平均read长度

    perl -ne 'BEGIN{$min=1e10;$max=0;}next if ($.%4);chomp;$read_count++;$cur_length=length($_);$total_length+=$cur_length;$min=$min>$cur_length?$cur_length:$min;$max=$max<$cur_length?$cur_length:$max;END{print qq{Totally $read_count reads Totally $total_length bases MAX length is $max bp MIN length is $min bp Mean length is },$total_length/$read_count,qq{ bp }}' input.fq

    # 用于fasta格式文件的read数、碱基数、最长的read、最短的read及平均read长度

    perl -ne 'BEGIN{$min=1e10;$max=0;}next if ($.%2);chomp;$read_count++;$cur_length=length($_);$total_length+=$cur_length;$min=$min>$cur_length?$cur_length:$min;$max=$max<$cur_length?$cur_length:$max;END{print qq{Totally $read_count reads Totally $total_length bases MAX length is $max bp MIN length is $min bp Mean length is },$total_length/$read_count,qq{ bp }}' input.fa

  • 相关阅读:
    移动端web
    递归求和
    json的基础了解
    冒泡排序的编程方法
    js面向对象
    1002,javascript的原型属性
    1001,instanceof关键字以及typeof关键字
    19,简述一下src与href的区别(不懂)
    531,<form>action属性
    530,css outline属性
  • 原文地址:https://www.cnblogs.com/Datapotumas/p/6306186.html
Copyright © 2011-2022 走看看