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

seq comp documentation per #47 #181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,15 @@ Seqtk Examples

seqtk trimfq -b 5 -e 10 in.fa > out.fa

* Report the composition of the sequences in `in.fa`:

# Output format: chr, length, #A, #C, #G, #T, #2, #3, #4, #CpG, #tv, #ts, #CpG-ts
# where A, C, G, T is counts of individual nucleotides,
# #2 describes IUPAC bases with 2 possible values
# #3 describes IUPAC bases with 3 possible values
# #4 describes IUPAC bases with 4 possible values (N)
# #CpG CG pair (revcom aware)
# #tv transversion - the other possible [AGTC]<=>[AGTC] ajdacent pairs
# #ts transition ie. adacent A<=>G or C<=>T
# #CpG-ts CG pair (revcom aware) but allowing transitions in 1st (and/or 2nd) base
seqtk in.fa