You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file "Mus_musculus.GRCm38.75.dna_rm.toplevel.fa.gz" is located in not "chapter-07-unix-data-tools" but in "chapter-09-working-with-range-data" in the GitHub repository.
(Page 131)
i() { (head -n 2; tail -n 2) < "$1" | column -t}
should be
i() { (head -n 2; tail -n 2) < "$1" | column -t; }
Page 150
should be
(Page 152)
(e.g.,
50% with -S 50%
).should be
(e.g., 50% with
-S 50%
).(Page 154)
uniq -d test.bed | wc -l
had no output.uniq -d Mus_musculus.GRCm38.75_chr1.bed | wc -l
printed 22925. Thus,A file with duplicates, like the test.bed file, has multiple lines returned:
should be
A file with duplicates, like the Mus_musculus.GRCm38.75_chr1.bed file, has multiple lines returned:
(Page 156)
join -1 1 -2 1 -a 1 example_sorted.bed example_lengths_alt.txt # GNU join only
worked on Mac OS X 10.9.5
(Page 163)
brew tap homebrew/science; brew install bioawk
should be
brew tap brewsci/bio; brew install bioawk
https://github.com/Homebrew/homebrew-science/issues/6617
(Page 163)
(just as regular Awk sets the columns of a tabular text file to
$1, $1, $2,
etc.).should be
(just as regular Awk sets the columns of a tabular text file to
$1, $2, $3,
etc.).(Page 163)
let’s read in example.bed
should be
let’s read in Mus_musculus.GRCm38.75_chr1.gtf
(Page 164)
The file "Mus_musculus.GRCm38.75.dna_rm.toplevel.fa.gz" is located in not "chapter-07-unix-data-tools" but in "chapter-09-working-with-range-data" in the GitHub repository.
The text was updated successfully, but these errors were encountered: