c.bstr.Rd
Combine Values into a bstr class object
# S3 method for bstr c(...)
... | ... |
---|
#> class: bstr,character #> number of sequences: 5 #> [1] no name 1 : CCGTA 5 #> [2] no name 2 : TTGGA 5 #> [3] no name 1 : AGGAT 5 #> [4] no name 2 : TATCG 5 #> [5] no name 3 : GATAC 5#> class: bstr,character #> number of sequences: 5 #> [1] no name 1 : AGGAT 5 #> [2] no name 2 : TATCG 5 #> [3] no name 3 : GATAC 5 #> [4] no name 1 : CCGTA 5 #> [5] no name 2 : TTGGA 5#> no name 1 no name 2 #> "hoge" "CCGTA" "TTGGA"# c(dstr_rand_seq(3, 5, seed = 2), "hoge") # Error c(dstr_rand_seq(3, 5, seed = 2), as_bstr("hoge"))#> class: bstr,character #> number of sequences: 4 #> [1] no name 1 : AGGAT 5 #> [2] no name 2 : TATCG 5 #> [3] no name 3 : GATAC 5 #> [4] no name 1 : hoge 4