Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: min_intron_length_ initialization in JunctionsExtractor #2

Open
wants to merge 1 commit into
base: 176/td/fix-mac-build
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions src/junctions/junctions_extractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,23 @@ class JunctionsExtractor {
region_ = ".";
ref_ = "NA";
}
JunctionsExtractor(string bam1, string region1, int strandness1, string strand_tag1, uint32_t min_anchor_length1, uint32_t min_intron_length1, uint32_t max_intron_length1, string ref1) :
bam_(bam1), region_(region1), strandness_(strandness1), strand_tag_(strand_tag1), min_anchor_length_(min_anchor_length1), min_intron_length_(min_anchor_length1), max_intron_length_(max_intron_length1), ref_(ref1){
JunctionsExtractor(
string bam1,
string region1,
int strandness1,
string strand_tag1,
uint32_t min_anchor_length1,
uint32_t min_intron_length1,
uint32_t max_intron_length1,
string ref1) :
bam_(bam1),
region_(region1),
strandness_(strandness1),
strand_tag_(strand_tag1),
min_anchor_length_(min_anchor_length1),
min_intron_length_(min_intron_length1),
max_intron_length_(max_intron_length1),
ref_(ref1) {
junctions_sorted_ = false;
output_file_ = "NA";
output_barcodes_file_ = "NA";
Expand Down