We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aebe30 commit a482b9fCopy full SHA for a482b9f
1 file changed
README
@@ -115,6 +115,33 @@ this type of shuffling is discussed by Fitch (1983).
115
Note: these methods only apply for k > 1. Otherwise, a simple shuffle call is
116
performed.
117
118
+Example usage:
119
+
120
+ euler shuffling:
121
122
+ bin/./shuffler -i example/sequence.txt -k 2 | bin/./countlets
123
124
+ A 17384
125
+ C 8081
126
+ G 7583
127
+ T 16952
128
129
+ markov shuffling:
130
131
+ bin/./shuffler -i example/sequence.txt -k 2 -s 1 -m | bin/./countlets
132
133
+ A 17421
134
+ C 8122
135
+ G 7472
136
+ T 16984
137
138
+ linear + fasta-formatted shuffling:
139
140
+ echo ">seq\nASCASCASDASCASDASDASC" | bin/./shuffler -k 2 -l -s 1 -f
141
142
+ >seq
143
+ CAASASASSCSCDAASSDDAC
144
145
146
References
147
----------
0 commit comments