There's a fantastic series made possible by the University of California, Davis Genome Center, and David Coil on how to access, parse, and analyze big data sequences.
How to display content, and basic grep commands
In summary:
- used to display file
- searches and displays item at file
- returns number of occurrences item exists at file
less fileNamePath
grep item fileNamePath
grep -c item fileNamePath
How to parse data with grep
In summary:
- create a new file that contains data with the item parsed
- create a new file containing everything except data with the item parsed
grep item originalFilePath > newFilePath
grep -v item originalFilePath > newFilePath
How to analyse data
In summary:
- find occurrences of item of interest
- find total number of occurences
Please support this awesome series and subscribe to David's channel on Youtube, where you can also view the series, and more, in it's entirety.
No comments:
Post a Comment