in reply to Re^2: Count the sequence length of each entry in the file
in thread Count the sequence length of each entry in the file
# Remove fasta header line if ( $para =~ s/^>(.*)//m ){ $name = $1; }; # Remove comment line(s) $para =~ s/^\s*#.*//mg; $para =~ tr/\r\n//d;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Count the sequence length of each entry in the file
by haukex (Archbishop) on Oct 03, 2020 at 07:44 UTC | |
by wazat (Monk) on Oct 03, 2020 at 20:25 UTC |