diff --git a/documentation/CustomBarcodes.md b/documentation/CustomBarcodes.md index d81d92846..dcb9a9500 100644 --- a/documentation/CustomBarcodes.md +++ b/documentation/CustomBarcodes.md @@ -28,10 +28,10 @@ The following are all the options that can be defined in the arrangement file. name = "custom_barcode" kit = "BC" -mask_1_front = "ATCG" -mask_1_rear = "ATCG" -mask_2_front = "TTAA" -mask_2_rear = "GGCC" +mask1_front = "ATCG" +mask1_rear = "ATCG" +mask2_front = "TTAA" +mask2_rear = "GGCC" # Barcode sequences barcode1_pattern = "BC%02i" @@ -44,7 +44,7 @@ last_index = 96 min_soft_barcode_threshold = 0.2 min_hard_barcode_threshold = 0.2 min_soft_flank_threshold = 0.3 -min_hard_barcode_threshold = 0.3 +min_hard_flank_threshold = 0.3 min_barcode_score_dist = 0.1 ``` diff --git a/dorado/data_loader/DataLoader.cpp b/dorado/data_loader/DataLoader.cpp index a82bebbfa..53b8e46f4 100644 --- a/dorado/data_loader/DataLoader.cpp +++ b/dorado/data_loader/DataLoader.cpp @@ -342,6 +342,7 @@ void DataLoader::load_reads(const std::string& path, if (m_loaded_read_count == m_max_reads) { break; } + spdlog::debug("Load reads from file {}", entry.path().string()); std::string ext = std::filesystem::path(entry).extension().string(); std::transform(ext.begin(), ext.end(), ext.begin(), [](unsigned char c) { return std::tolower(c); });