Contents

This document gives an overview of the DNABarcodeCompatibility R package with a brief description of the set of tools that it contains. The package includes six main functions that are briefly described below with examples. These functions allow one to load a list of DNA barcodes (such as the Illumina TruSeq small RNA kits), to filter these barcodes according to distance and nucleotide content criteria, to generate sets of compatible barcode combinations out of the filtered barcode list, and finally to generate an optimized selection of barcode combinations for multiplex sequencing experiments. In particular, the package provides an optimizer function to favour the selection of compatible barcode combinations with least heterogeneity in the frequencies of DNA barcodes, and allows one to keep barcodes that are robust against substitution and insertion/deletion errors, thereby facilitating the demultiplexing step.

The DNABarcodeCompatibility package also contains:

The package deals with the three existing sequencing-by-synthesis chemistries from Illumina:

1 Load the package

library("DNABarcodeCompatibility")

2 Define a helper function to save the raw dataset as a temporary text file

# This function is created for the purpose of the documentation 
export_dataset_to_file = 
    function(dataset = DNABarcodeCompatibility::IlluminaIndexesRaw) {
        if ("data.frame" %in% is(dataset)) {
            write.table(dataset,
                        textfile <- tempfile(),
                        row.names = FALSE, col.names = FALSE, quote=FALSE)
            return(textfile)
        } else print(paste("The input dataset isn't a data.frame:",
                            "NOT exported into file"))
    }

3 Design an experiment

The function experiment_design() uses a Shannon-entropy maximization approach to identify a set of compatible barcode combinations in which the frequencies of occurrences of the various DNA barcodes are as uniform as possible. The optimization can be performed in the contexts of single and dual barcoding. It performs either an exhaustive or a random search of compatible DNA-barcode combinations, depending on the size of the DNA-barcode set used, and on the number of samples to be multiplexed.

3.1 Examples for single indexing

  • 12 libraries sequenced in multiplex of 3 on a HiSeq (4 channels) platform
txtfile <- export_dataset_to_file (
    dataset = DNABarcodeCompatibility::IlluminaIndexesRaw
)
experiment_design(file1=txtfile,
                    sample_number=12,
                    mplex_level=3,
                    platform=4)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##    sample Lane    Id sequence
## 1       1    1 RPI03   TTAGGC
## 2       2    1 RPI22   CGTACG
## 3       3    1 RPI23   GAGTGG
## 4       4    2 RPI02   CGATGT
## 5       5    2 RPI24   GGTAGC
## 6       6    2 RPI28   CAAAAG
## 7       7    3 RPI11   GGCTAC
## 8       8    3 RPI26   ATGAGC
## 9       9    3 RPI33   CAGGCG
## 10     10    4 RPI07   CAGATC
## 11     11    4 RPI17   GTAGAG
## 12     12    4 RPI47   TCGAAG
  • 12 libraries sequenced in multiplex of 3 on a NextSeq (2 channels) platform
txtfile <- export_dataset_to_file (
    dataset = DNABarcodeCompatibility::IlluminaIndexesRaw
)
experiment_design(file1=txtfile,
                    sample_number=12,
                    mplex_level=3,
                    platform=2)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##    sample Lane    Id sequence
## 1       1    1 RPI13   AGTCAA
## 2       2    1 RPI39   CTATAC
## 3       3    1 RPI48   TCGGCA
## 4       4    2 RPI12   CTTGTA
## 5       5    2 RPI15   ATGTCA
## 6       6    2 RPI29   CAACTA
## 7       7    3 RPI06   GCCAAT
## 8       8    3 RPI27   ATTCCT
## 9       9    3 RPI46   TCCCGA
## 10     10    4 RPI01   ATCACG
## 11     11    4 RPI25   ACTGAT
## 12     12    4 RPI26   ATGAGC
  • 12 libraries sequenced in multiplex of 3 on a iSeq (1 channels) platform
txtfile <- export_dataset_to_file (
    dataset = DNABarcodeCompatibility::IlluminaIndexesRaw
)
experiment_design(file1=txtfile,
                    sample_number=12,
                    mplex_level=3,
                    platform=1)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##    sample Lane    Id sequence
## 1       1    1 RPI23   GAGTGG
## 2       2    1 RPI25   ACTGAT
## 3       3    1 RPI36   CCAACA
## 4       4    2 RPI13   AGTCAA
## 5       5    2 RPI39   CTATAC
## 6       6    2 RPI42   TAATCG
## 7       7    3 RPI15   ATGTCA
## 8       8    3 RPI44   TATAAT
## 9       9    3 RPI46   TCCCGA
## 10     10    4 RPI08   ACTTGA
## 11     11    4 RPI29   CAACTA
## 12     12    4 RPI38   CTAGCT
  • 12 libraries sequenced in multiplex of 3 on a HiSeq platform using barcodes robust against 1 substitution error
txtfile <- export_dataset_to_file (
    dataset = DNABarcodeCompatibility::IlluminaIndexesRaw
)
experiment_design(file1=txtfile,
                sample_number=12,
                mplex_level=3,
                platform=4,
                metric = "hamming",
                d = 3)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##    sample Lane    Id sequence
## 1       1    1 RPI06   GCCAAT
## 2       2    1 RPI14   AGTTCC
## 3       3    1 RPI23   GAGTGG
## 4       4    2 RPI10   TAGCTT
## 5       5    2 RPI13   AGTCAA
## 6       6    2 RPI38   CTAGCT
## 7       7    3 RPI07   CAGATC
## 8       8    3 RPI21   GTTTCG
## 9       9    3 RPI43   TACAGC
## 10     10    4 RPI11   GGCTAC
## 11     11    4 RPI22   CGTACG
## 12     12    4 RPI46   TCCCGA

3.2 Examples for dual indexing

  • 12 libraries sequenced in multiplex of 3 on a HiSeq platform
# Select the first half of barcodes from the dataset
txtfile1 <- export_dataset_to_file (
    DNABarcodeCompatibility::IlluminaIndexesRaw[1:24,]
)

# Select the second half of barcodes from the dataset
txtfile2 <- export_dataset_to_file (
    DNABarcodeCompatibility::IlluminaIndexesRaw[25:48,]
)

# Get compatibles combinations of least redundant barcodes
experiment_design(file1=txtfile1,
                sample_number=12,
                mplex_level=3,
                platform=4,
                file2=txtfile2)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##       Id Lane
## 1  RPI08    1
## 2  RPI17    1
## 3  RPI24    1
## 4  RPI01    2
## 5  RPI10    2
## 6  RPI14    2
## 7  RPI05    3
## 8  RPI15    3
## 9  RPI19    3
## 10 RPI06    4
## 11 RPI07    4
## 12 RPI12    4
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##       Id Lane
## 1  RPI39    1
## 2  RPI40    1
## 3  RPI44    1
## 4  RPI26    2
## 5  RPI45    2
## 6  RPI47    2
## 7  RPI32    3
## 8  RPI37    3
## 9  RPI46    3
## 10 RPI27    4
## 11 RPI43    4
## 12 RPI48    4
##       Id Lane sequence
## 1  RPI08    1   ACTTGA
## 2  RPI17    1   GTAGAG
## 3  RPI24    1   GGTAGC
## 4  RPI01    2   ATCACG
## 5  RPI10    2   TAGCTT
## 6  RPI14    2   AGTTCC
## 7  RPI05    3   ACAGTG
## 8  RPI15    3   ATGTCA
## 9  RPI19    3   GTGAAA
## 10 RPI06    4   GCCAAT
## 11 RPI07    4   CAGATC
## 12 RPI12    4   CTTGTA
##       Id Lane sequence
## 1  RPI39    1   CTATAC
## 2  RPI40    1   CTCAGA
## 3  RPI44    1   TATAAT
## 4  RPI26    2   ATGAGC
## 5  RPI45    2   TCATTC
## 6  RPI47    2   TCGAAG
## 7  RPI32    3   CACTCA
## 8  RPI37    3   CGGAAT
## 9  RPI46    3   TCCCGA
## 10 RPI27    4   ATTCCT
## 11 RPI43    4   TACAGC
## 12 RPI48    4   TCGGCA
##    sample Lane   Id1 sequence1   Id2 sequence2
## 1       1    1 RPI08    ACTTGA RPI39    CTATAC
## 2       2    1 RPI17    GTAGAG RPI40    CTCAGA
## 3       3    1 RPI24    GGTAGC RPI44    TATAAT
## 4       4    2 RPI01    ATCACG RPI26    ATGAGC
## 5       5    2 RPI10    TAGCTT RPI45    TCATTC
## 6       6    2 RPI14    AGTTCC RPI47    TCGAAG
## 7       7    3 RPI05    ACAGTG RPI32    CACTCA
## 8       8    3 RPI15    ATGTCA RPI37    CGGAAT
## 9       9    3 RPI19    GTGAAA RPI46    TCCCGA
## 10     10    4 RPI06    GCCAAT RPI27    ATTCCT
## 11     11    4 RPI07    CAGATC RPI43    TACAGC
## 12     12    4 RPI12    CTTGTA RPI48    TCGGCA
  • 12 libraries sequenced in multiplex of 3 on a HiSeq platform using barcodes robust against 1 substitution error
# Select the first half of barcodes from the dataset
txtfile1 <- export_dataset_to_file (
    DNABarcodeCompatibility::IlluminaIndexesRaw[1:24,]
)

# Select the second half of barcodes from the dataset
txtfile2 <- export_dataset_to_file (
    DNABarcodeCompatibility::IlluminaIndexesRaw[25:48,]
)

# Get compatibles combinations of least redundant barcodes
experiment_design(file1=txtfile1, sample_number=12, mplex_level=3, platform=4,
                    file2=txtfile2, metric="hamming", d=3)
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##       Id Lane
## 1  RPI06    1
## 2  RPI11    1
## 3  RPI12    1
## 4  RPI14    2
## 5  RPI18    2
## 6  RPI23    2
## 7  RPI05    3
## 8  RPI13    3
## 9  RPI20    3
## 10 RPI04    4
## 11 RPI08    4
## 12 RPI17    4
## [1] "Theoretical max entropy: 2.48491"
## [1] "Entropy of the optimized set: 2.48491"
##       Id Lane
## 1  RPI30    1
## 2  RPI39    1
## 3  RPI47    1
## 4  RPI26    2
## 5  RPI44    2
## 6  RPI45    2
## 7  RPI27    3
## 8  RPI34    3
## 9  RPI41    3
## 10 RPI37    4
## 11 RPI43    4
## 12 RPI48    4
##       Id Lane sequence
## 1  RPI06    1   GCCAAT
## 2  RPI11    1   GGCTAC
## 3  RPI12    1   CTTGTA
## 4  RPI14    2   AGTTCC
## 5  RPI18    2   GTCCGC
## 6  RPI23    2   GAGTGG
## 7  RPI05    3   ACAGTG
## 8  RPI13    3   AGTCAA
## 9  RPI20    3   GTGGCC
## 10 RPI04    4   TGACCA
## 11 RPI08    4   ACTTGA
## 12 RPI17    4   GTAGAG
##       Id Lane sequence
## 1  RPI30    1   CACCGG
## 2  RPI39    1   CTATAC
## 3  RPI47    1   TCGAAG
## 4  RPI26    2   ATGAGC
## 5  RPI44    2   TATAAT
## 6  RPI45    2   TCATTC
## 7  RPI27    3   ATTCCT
## 8  RPI34    3   CATGGC
## 9  RPI41    3   GACGAC
## 10 RPI37    4   CGGAAT
## 11 RPI43    4   TACAGC
## 12 RPI48    4   TCGGCA
##    sample Lane   Id1 sequence1   Id2 sequence2
## 1       1    1 RPI06    GCCAAT RPI30    CACCGG
## 2       2    1 RPI11    GGCTAC RPI39    CTATAC
## 3       3    1 RPI12    CTTGTA RPI47    TCGAAG
## 4       4    2 RPI14    AGTTCC RPI26    ATGAGC
## 5       5    2 RPI18    GTCCGC RPI44    TATAAT
## 6       6    2 RPI23    GAGTGG RPI45    TCATTC
## 7       7    3 RPI05    ACAGTG RPI27    ATTCCT
## 8       8    3 RPI13    AGTCAA RPI34    CATGGC
## 9       9    3 RPI20    GTGGCC RPI41    GACGAC
## 10     10    4 RPI04    TGACCA RPI37    CGGAAT
## 11     11    4 RPI08    ACTTGA RPI43    TACAGC
## 12     12    4 RPI17    GTAGAG RPI48    TCGGCA

4 Build your own workflow

This section guides you through the detailed API of the package with the aim to help you build your own workflow. The package is designed to be flexible and should be easily adaptable to most experimental contexts, using the experiment_design() function as a template, or building your own workflow from scratch.

4.1 Load and check a dataset of barcodes

The file_loading_and_checking() function loads the file containing the DNA barcodes set and analyzes its content. In particular, it checks that each barcode in the set is unique and uniquely identified (removing any repetition that occurs). It also checks the homogeneity of size of the barcodes, calculates their GC content and detects the presence of homopolymers of length >= 3.

file_loading_and_checking(
    file = export_dataset_to_file(
        dataset = DNABarcodeCompatibility::IlluminaIndexesRaw
    )
)
##       Id sequence GC_content homopolymer
## 1  RPI01   ATCACG      50.00       FALSE
## 2  RPI02   CGATGT      50.00       FALSE
## 3  RPI03   TTAGGC      50.00       FALSE
## 4  RPI04   TGACCA      50.00       FALSE
## 5  RPI05   ACAGTG      50.00       FALSE
## 6  RPI06   GCCAAT      50.00       FALSE
## 7  RPI07   CAGATC      50.00       FALSE
## 8  RPI08   ACTTGA      33.33       FALSE
## 9  RPI09   GATCAG      50.00       FALSE
## 10 RPI10   TAGCTT      33.33       FALSE
## 11 RPI11   GGCTAC      66.67       FALSE
## 12 RPI12   CTTGTA      33.33       FALSE
## 13 RPI13   AGTCAA      33.33       FALSE
## 14 RPI14   AGTTCC      50.00       FALSE
## 15 RPI15   ATGTCA      33.33       FALSE
## 16 RPI16   CCGTCC      83.33       FALSE
## 17 RPI17   GTAGAG      50.00       FALSE
## 18 RPI18   GTCCGC      83.33       FALSE
## 19 RPI19   GTGAAA      33.33        TRUE
## 20 RPI20   GTGGCC      83.33       FALSE
## 21 RPI21   GTTTCG      50.00        TRUE
## 22 RPI22   CGTACG      66.67       FALSE
## 23 RPI23   GAGTGG      66.67       FALSE
## 24 RPI24   GGTAGC      66.67       FALSE
## 25 RPI25   ACTGAT      33.33       FALSE
## 26 RPI26   ATGAGC      50.00       FALSE
## 27 RPI27   ATTCCT      33.33       FALSE
## 28 RPI28   CAAAAG      33.33        TRUE
## 29 RPI29   CAACTA      33.33       FALSE
## 30 RPI30   CACCGG      83.33       FALSE
## 31 RPI31   CACGAT      50.00       FALSE
## 32 RPI32   CACTCA      50.00       FALSE
## 33 RPI33   CAGGCG      83.33       FALSE
## 34 RPI34   CATGGC      66.67       FALSE
## 35 RPI35   CATTTT      16.67        TRUE
## 36 RPI36   CCAACA      50.00       FALSE
## 37 RPI37   CGGAAT      50.00       FALSE
## 38 RPI38   CTAGCT      50.00       FALSE
## 39 RPI39   CTATAC      33.33       FALSE
## 40 RPI40   CTCAGA      50.00       FALSE
## 41 RPI41   GACGAC      66.67       FALSE
## 42 RPI42   TAATCG      33.33       FALSE
## 43 RPI43   TACAGC      50.00       FALSE
## 44 RPI44   TATAAT       0.00       FALSE
## 45 RPI45   TCATTC      33.33       FALSE
## 46 RPI46   TCCCGA      66.67        TRUE
## 47 RPI47   TCGAAG      50.00       FALSE
## 48 RPI48   TCGGCA      66.67       FALSE

4.2 Examples of an exhaustive search of compatible barcode combinations

The total number of combinations depends on the number of available barcodes and of the multiplex level. For 48 barcodes and a multiplex level of 3, the total number of combinations (compatible or not) can be calculated using choose(48,3), which gives 17296 combinations. In many cases the total number of combinations can become much larger (even gigantic), and one cannot perform an exhaustive search (see get_random_combinations() below).

  • 48 barcodes, multiplex level of 2, HiSeq platform
# Total number of combinations
choose(48,2)
## [1] 1128

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Time for an exhaustive search
system.time(m <- get_all_combinations(index_df = barcodes,
                                    mplex_level = 2,
                                    platform = 4))
##    user  system elapsed 
##   0.110   0.003   0.112

# Each line represents a compatible combination of barcodes
head(m)
##      [,1]    [,2]   
## [1,] "RPI04" "RPI35"
## [2,] "RPI05" "RPI19"
## [3,] "RPI06" "RPI12"
## [4,] "RPI07" "RPI17"
## [5,] "RPI10" "RPI39"
## [6,] "RPI18" "RPI25"
  • 48 barcodes, multiplex level of 3, HiSeq platform
# Total number of combinations
choose(48,3)
## [1] 17296

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Time for an exhaustive search
system.time(m <- get_all_combinations(index_df = barcodes,
                                    mplex_level = 3,
                                    platform = 4))
##    user  system elapsed 
##   2.515   0.046   2.621

# Each line represents a compatible combination of barcodes
head(m)
##      [,1]    [,2]    [,3]   
## [1,] "RPI01" "RPI02" "RPI48"
## [2,] "RPI01" "RPI03" "RPI07"
## [3,] "RPI01" "RPI03" "RPI08"
## [4,] "RPI01" "RPI03" "RPI09"
## [5,] "RPI01" "RPI03" "RPI10"
## [6,] "RPI01" "RPI03" "RPI16"

4.3 Examples of a random search of compatible barcode combinations

When the total number of combinations is too high, it is recommended to pick combinations at random and then select those that are compatible.

  • 48 barcodes, multiplex level of 3, HiSeq platform
# Total number of combinations
choose(48,3)
## [1] 17296

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Time for a random search
system.time(m <- get_random_combinations(index_df = barcodes,
                                        mplex_level = 2,
                                        platform = 4))
##    user  system elapsed 
##   0.063   0.000   0.062

# Each line represents a compatible combination of barcodes
head(m)
##      [,1]    [,2]   
## [1,] "RPI04" "RPI35"
## [2,] "RPI21" "RPI29"
## [3,] "RPI22" "RPI45"
## [4,] "RPI27" "RPI45"
  • 48 barcodes, multiplex level of 4, HiSeq platform
# Total number of combinations
choose(48,4)
## [1] 194580

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Time for a random search
system.time(m <- get_random_combinations(index_df = barcodes,
                                        mplex_level = 4,
                                        platform = 4))
##    user  system elapsed 
##   0.369   0.001   0.373

# Each line represents a compatible combination of barcodes
head(m)
##      [,1]    [,2]    [,3]    [,4]   
## [1,] "RPI01" "RPI16" "RPI18" "RPI21"
## [2,] "RPI01" "RPI07" "RPI15" "RPI20"
## [3,] "RPI01" "RPI03" "RPI37" "RPI45"
## [4,] "RPI01" "RPI05" "RPI09" "RPI41"
## [5,] "RPI01" "RPI05" "RPI07" "RPI45"
## [6,] "RPI01" "RPI10" "RPI19" "RPI39"
  • 48 barcodes, multiplex level of 6, HiSeq platform
# Total number of combinations
choose(48,6)
## [1] 12271512

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Time for a random search
system.time(m <- get_random_combinations(index_df = barcodes,
                                        mplex_level = 6,
                                        platform = 4))
##    user  system elapsed 
##   0.605   0.001   0.607

# Each line represents a compatible combination of barcodes
head(m)
##      [,1]    [,2]    [,3]    [,4]    [,5]    [,6]   
## [1,] "RPI01" "RPI03" "RPI11" "RPI14" "RPI21" "RPI42"
## [2,] "RPI01" "RPI08" "RPI18" "RPI19" "RPI20" "RPI39"
## [3,] "RPI01" "RPI10" "RPI11" "RPI17" "RPI31" "RPI48"
## [4,] "RPI01" "RPI04" "RPI22" "RPI23" "RPI27" "RPI42"
## [5,] "RPI01" "RPI04" "RPI06" "RPI29" "RPI31" "RPI33"
## [6,] "RPI01" "RPI05" "RPI07" "RPI16" "RPI17" "RPI27"

4.4 Constrain barcodes to be robust against one substitution error

# Load barcodes
barcodes <- DNABarcodeCompatibility::IlluminaIndexes

# Perform a random search of compatible combinations
m <- get_random_combinations(index_df = barcodes,
                            mplex_level = 3,
                            platform = 4)

# Keep barcodes that are robust against one substitution error
filtered_m <- distance_filter(index_df = barcodes,
                            combinations_m = m,
                            metric = "hamming",
                            d = 3)

# Each line represents a compatible combination of barcodes
head(filtered_m)
##      V1      V2      V3     
## [1,] "RPI01" "RPI12" "RPI45"
## [2,] "RPI01" "RPI10" "RPI41"
## [3,] "RPI01" "RPI09" "RPI45"
## [4,] "RPI01" "RPI04" "RPI23"
## [5,] "RPI01" "RPI23" "RPI26"
## [6,] "RPI01" "RPI15" "RPI43"

4.5 Optimize the set of compatible combinations to reduce barcode redundancy

# Keep set of compatible barcodes that are robust against one substitution
# error
filtered_m <- distance_filter(
    index_df = DNABarcodeCompatibility::IlluminaIndexes,
    combinations_m = get_random_combinations(index_df = barcodes,
                                            mplex_level = 3,
                                            platform = 4),
    metric = "hamming", d = 3)

# Use a Shannon-entropy maximization approach to reduce barcode redundancy
df <- optimize_combinations(combination_m = filtered_m,
                            nb_lane = 12,
                            index_number = 48)
## [1] "Theoretical max entropy: 3.58352"
## [1] "Entropy of the optimized set: 3.58352"

# Each line represents a compatible combination of barcodes and each row a lane
# of the flow cell
df
##       V1      V2      V3     
##  [1,] "RPI15" "RPI37" "RPI46"
##  [2,] "RPI24" "RPI38" "RPI47"
##  [3,] "RPI04" "RPI21" "RPI30"
##  [4,] "RPI05" "RPI10" "RPI13"
##  [5,] "RPI01" "RPI35" "RPI43"
##  [6,] "RPI07" "RPI11" "RPI44"
##  [7,] "RPI23" "RPI26" "RPI32"
##  [8,] "RPI02" "RPI09" "RPI19"
##  [9,] "RPI03" "RPI33" "RPI40"
## [10,] "RPI22" "RPI34" "RPI45"
## [11,] "RPI14" "RPI18" "RPI28"
## [12,] "RPI06" "RPI12" "RPI42"

4.6 The optimized result isn’t an optimum when filtering out too many barcodes

  • Increased distance between barcode sequences: redundancy may become inevitable
# Keep set of compatible barcodes that are robust against multiple substitution
# and insertion/deletion errors
filtered_m <- distance_filter(
    index_df = DNABarcodeCompatibility::IlluminaIndexes,
    combinations_m = get_random_combinations(index_df = barcodes,
                                            mplex_level = 3,
                                            platform = 4),
    metric = "seqlev", d = 4)

# Use a Shannon-entropy maximization approach to reduce barcode redundancy
df <- optimize_combinations(combination_m = filtered_m,
                            nb_lane = 12,
                            index_number = 48)
## [1] "Theoretical max entropy: 3.58352"
## [1] "Entropy of the optimized set: 3.08291"

# Each line represents a compatible combination of barcodes and each row a
# lane of the flow cell
df
##       V1      V2      V3     
##  [1,] "RPI11" "RPI35" "RPI47"
##  [2,] "RPI11" "RPI23" "RPI28"
##  [3,] "RPI01" "RPI19" "RPI35"
##  [4,] "RPI18" "RPI34" "RPI44"
##  [5,] "RPI19" "RPI38" "RPI46"
##  [6,] "RPI03" "RPI27" "RPI30"
##  [7,] "RPI13" "RPI21" "RPI43"
##  [8,] "RPI14" "RPI17" "RPI29"
##  [9,] "RPI17" "RPI37" "RPI45"
## [10,] "RPI03" "RPI27" "RPI30"
## [11,] "RPI18" "RPI34" "RPI44"
## [12,] "RPI13" "RPI21" "RPI43"