Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bedtools2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
R3
legacy
bedtools2
Commits
2e3c8f96
Commit
2e3c8f96
authored
13 years ago
by
Aaron
Browse files
Options
Downloads
Patches
Plain Diff
removed unused attributes in chromsweep
parent
6b08d4b5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/utils/chromsweep/chromsweep.h
+9
-32
9 additions, 32 deletions
src/utils/chromsweep/chromsweep.h
with
9 additions
and
32 deletions
src/utils/chromsweep/chromsweep.h
+
9
−
32
View file @
2e3c8f96
...
...
@@ -24,8 +24,11 @@ using namespace std;
class
ChromSweep
{
// public interface.
public:
// A is the query and B is the database
// constructor using existing BedFile pointers
ChromSweep
(
BedFile
*
bedA
,
BedFile
*
bedB
);
...
...
@@ -49,40 +52,11 @@ public:
// // magic happens here!
// processHits(hit_set.first, hit_set.second);
// }
// private variables.
private:
//------------------------------------------------
// private attributes
//------------------------------------------------
string
_bedAFile
;
string
_bedBFile
;
bool
_writeA
;
// should the original A feature be reported?
bool
_writeB
;
// should the original B feature be reported?
bool
_writeOverlap
;
bool
_writeAllOverlap
;
bool
_sameStrand
;
bool
_diffStrand
;
bool
_reciprocal
;
float
_overlapFraction
;
bool
_anyHit
;
bool
_noHit
;
bool
_writeCount
;
// do we want a count of the number of overlaps in B?
bool
_obeySplits
;
bool
_bamInput
;
bool
_bamOutput
;
bool
_printable
;
queue
<
BED
*>
_outputBuffer
;
bool
_lastPick
;
map
<
string
,
vector
<
BED
*>
>
_windowA
;
map
<
string
,
vector
<
BED
*>
>
_windowB
;
// instance of a bed file class.
// instances of a bed file class.
BedFile
*
_bedA
,
*
_bedB
;
vector
<
BED
>
_cache
;
...
...
@@ -96,6 +70,9 @@ private:
BedLineStatus
_qy_status
,
_db_status
;
int
_qy_lineNum
,
_db_lineNum
;
// private methods.
private:
void
ScanCache
();
void
ChromCheck
();
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment