Help for this page

Select Code to Download


  1. or download this
    cat input_file.fq | \
    perl -ne '$s=<>;<>;<>;chomp($s);print length($s)."\n";' > output.txt
    
  2. or download this
    perl -ne '$s=<>;<>;<>;chomp($s);print length($s)."\n";' \
    <input_file.fq >output.txt