Help for this page

Select Code to Download


  1. or download this
    perl -i -p -e '
    BEGIN {
    ...
    $sequenceLength = getc;
    }
    s/$/$sequenceLength/' seq.txt
    
  2. or download this
    $sequenceLength = <STDIN>; chomp($sequenceLength);