- To change the directory, you can use the commands explained at page 20.
- To find the size of a file you can use a modifier of the command
ls
. - To copy a file, see page 22.
- Is there a
grep
option that counts the number of occurrences? - To replace single characters, you can use the command
tr
with its options and modifiers. - You can use
grep
to match any line containing the wordisogroup
; then usecut
to isolate the part detailing the isogroup; finally, you want to remove the duplicates (e.g., page 32) and count. - Again, you can use a combination of
grep
andcut
to extract the contig names and read counts; the commandsort
allows you to choose the delimiter as well as ordering numeric values.