An arrange method for gen_tibble
objects
Examples
test_gt <- load_example_gt("gen_tbl")
test_gt %>% arrange(id)
#> # A gen_tibble: 6 loci
#> # A tibble: 7 × 3
#> id population genotypes
#> <chr> <chr> <vctr_SNP>
#> 1 a pop1 [1,1,...]
#> 2 b pop1 [2,1,...]
#> 3 c pop2 [2,.,...]
#> 4 d pop2 [1,0,...]
#> 5 e pop1 [1,2,...]
#> 6 f pop3 [0,0,...]
#> 7 g pop3 [0,1,...]