Description Usage Arguments Value Author(s) Examples
This program is a wrapper to
nFilter
.
It removes the sequences with a number of N's above
a threshold value 'rm.N'.
All the sequences with a number of N > rm.N (N >= rm.N) will be removed
1 | n_filter(input, rm.N)
|
input |
|
rm.N |
Threshold value of N's to remove a sequence from the output (sequences with number of Ns > threshold are removed) For example, if rm.N is 3, all the sequences with a number of Ns > 3 (Ns >= 4) will be removed |
Filtered ShortReadQ
object
Leandro Roser learoser@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | require('Biostrings')
require('ShortRead')
# create 6 sequences of width 20
set.seed(10)
input <- random_seq(50, 20)
# inject N's
set.seed(10)
input <- inject_letter_random(input, how_many_seqs = 1:30,
how_many = 1:10)
input <- DNAStringSet(input)
# watch the N's frequency
hist(letterFrequency(input, 'N'), breaks = 0:10,
main = 'Ns Frequency', xlab = '# Ns')
# create qualities of width 20
set.seed(10)
input_q <- random_qual(50, 20)
# create names
input_names <- seq_names(50)
# create ShortReadQ object
my_read <- ShortReadQ(sread = input, quality = input_q, id = input_names)
# apply the filter
filtered <- n_filter(my_read, rm.N = 3)
# watch the filtered sequences
sread(filtered)
# watch the N's frequency
hist(letterFrequency(sread(filtered), 'N'),
main = 'Ns distribution', xlab = '')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.