Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errata and updates for Chapter 10 #17

Open
haruosuz opened this issue Jul 10, 2020 · 0 comments
Open

Errata and updates for Chapter 10 #17

haruosuz opened this issue Jul 10, 2020 · 0 comments

Comments

@haruosuz
Copy link

haruosuz commented Jul 10, 2020


Page 346

library(BiocInstaller)
biocLite('qrqc')

should be

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("qrqc")

https://www.bioconductor.org/packages/release/bioc/html/qrqc.html


Page 350-351

counts.update(seq.upper())

The Counter.update() method

should be

The counts.update() method


Page 351

Contributed by Itaya, KH.

For Python 3.7.3,
cat contam.fastq | ./nuccount.py printed the following messages:

  File "./nuccount.py", line 18
    print base + "\t" + str(counts[base])
             ^
SyntaxError: invalid syntax

#) nuccount.py

nuccount.py:18:    print base + "\t" + str(counts[base])

should be

nuccount.py:18:    print ( base + "\t" + str(counts[base]) )

#) readfq.py

readfq.py:39:    print n, '\t', slen, '\t', qlen

should be

readfq.py:39:    print ( n, '\t', slen, '\t', qlen )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant