File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1890,16 +1890,12 @@ void Reader::prepare_regions_v4(
18901890 // Use a linked list for pre-partition regions to allow for parallel parsing
18911891 // of BED file
18921892 std::list<Region> pre_partition_regions_list;
1893- LOG_DEBUG (" [Reader] Preparing regions: {}" , regions->size ());
1894- LOG_DEBUG (" [Reader] Preparing regions with params: {}" , params_.regions .size ());
18951893
18961894 // Add manually-specified regions (-r) which are 1-indexed and inclusive
18971895 // and spark generated regions, which are 0-indexed and inclusive
18981896 // conversion is handled in the Region constructor
1899- for (const std::string& r : params_.regions ) {
1900- LOG_DEBUG (" [Reader] Adding region param: {}" , r);
1897+ for (const std::string& r : params_.regions )
19011898 pre_partition_regions_list.emplace_back (r);
1902- }
19031899
19041900 // Add BED file regions, if specified.
19051901 if (!params_.regions_file_uri .empty ()) {
@@ -1956,7 +1952,6 @@ void Reader::prepare_regions_v4(
19561952
19571953 // No specified regions means all regions.
19581954 if (pre_partition_regions_list.empty ()) {
1959- LOG_DEBUG (" [Reader] Empty regions list provided, selecting all regions" );
19601955 pre_partition_regions_list = dataset_->all_contigs_list_v4 ();
19611956 }
19621957
Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ struct MemoryBudgetBreakdown {
7676
7777struct DebugParams {
7878 // Print out tiledb query range
79- bool print_tiledb_query_ranges = true ;
79+ bool print_tiledb_query_ranges = false ;
8080
8181 // Print regions from bedfile or user passed
82- bool print_vcf_regions = true ;
82+ bool print_vcf_regions = false ;
8383
8484 // Print user set sample list
85- bool print_sample_list = true ;
85+ bool print_sample_list = false ;
8686};
8787
8888/* * Arguments/params for export. */
You can’t perform that action at this time.
0 commit comments