File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -514,6 +514,9 @@ constexpr int64_t default_maxseqlength = 50000;
514
514
constexpr int64_t default_ascii_offset = 33 ;
515
515
constexpr int64_t default_max_quality = 41 ;
516
516
constexpr auto int64_max = std::numeric_limits<int64_t >::max();
517
+ std::string const default_quality_padding = " IIIIIIII" ; // Q40 with an offset of 33
518
+ std::string const alternative_quality_padding = " hhhhhhhh" ; // Q40 with an offset of 64
519
+ std::string const default_sequence_padding = " NNNNNNNN" ;
517
520
518
521
struct Parameters {
519
522
char * opt_cut = nullptr ;
@@ -534,8 +537,8 @@ struct Parameters {
534
537
char * opt_fastqout_discarded_rev = nullptr ;
535
538
char * opt_fastx_subsample = nullptr ;
536
539
char * opt_fastx_uniques = nullptr ;
537
- std::string opt_join_padgap = " NNNNNNNN " ;
538
- std::string opt_join_padgapq = " IIIIIIII " ;
540
+ std::string opt_join_padgap = default_sequence_padding ;
541
+ std::string opt_join_padgapq = default_quality_padding ;
539
542
char * opt_log = nullptr ;
540
543
char * opt_output = nullptr ;
541
544
char * opt_relabel = nullptr ;
You can’t perform that action at this time.
0 commit comments