Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hi-Classifier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
Physical Biology of Chromatin
Hi-Classifier
Commits
025009a4
Commit
025009a4
authored
3 months ago
by
Bertache
Browse files
Options
Downloads
Patches
Plain Diff
Change caps name, and queue size
parent
3d3413b5
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hiclassifier/classify.py
+6
-6
6 additions, 6 deletions
src/hiclassifier/classify.py
with
6 additions
and
6 deletions
src/hiclassifier/classify.py
+
6
−
6
View file @
025009a4
...
@@ -11,7 +11,7 @@ from .bam import read_bam_pair
...
@@ -11,7 +11,7 @@ from .bam import read_bam_pair
from
.digest
import
build_restriction_index_from_records
from
.digest
import
build_restriction_index_from_records
from
.processing
import
process_items
from
.processing
import
process_items
from
.processmanager
import
ProcessManager
from
.processmanager
import
ProcessManager
from
.restrictionsite
import
S
earch
InD
ata
B
ase
from
.restrictionsite
import
s
earch
_in_d
ata
b
ase
from
.stats
import
compact_and_save_counts
from
.stats
import
compact_and_save_counts
from
.writer
import
write_bam_pair
from
.writer
import
write_bam_pair
...
@@ -36,7 +36,7 @@ def categorize(args, logging):
...
@@ -36,7 +36,7 @@ def categorize(args, logging):
len_max
=
args
.
len_max
len_max
=
args
.
len_max
tolerance
=
int
(
args
.
tolerance
)
tolerance
=
int
(
args
.
tolerance
)
ligation_site_list
,
restriction_site_list
=
S
earch
InD
ata
B
ase
(
enzyme
)
ligation_site_list
,
restriction_site_list
=
s
earch
_in_d
ata
b
ase
(
enzyme
)
if
restriction_site_list
is
None
:
if
restriction_site_list
is
None
:
logging
.
error
(
"
Ligation site list is empty.
"
)
logging
.
error
(
"
Ligation site list is empty.
"
)
sys
.
exit
(
0
)
sys
.
exit
(
0
)
...
@@ -52,16 +52,16 @@ def categorize(args, logging):
...
@@ -52,16 +52,16 @@ def categorize(args, logging):
logging
.
error
(
"
BAM
'
s file does not exist.
"
)
logging
.
error
(
"
BAM
'
s file does not exist.
"
)
sys
.
exit
()
sys
.
exit
()
Input_Queue
=
Queue
(
1000
)
Header_Queue
=
Queue
()
Header_Queue
=
Queue
()
Output_Queue_Valide
=
Queue
()
Input_Queue
=
Queue
(
1000
)
Output_Queue_Other
=
Queue
()
Output_Queue_Valide
=
Queue
(
1000
)
Output_Queue_Other
=
Queue
(
1000
)
Output_Queue_Del
=
Queue
(
1000
)
Counts_Dang_Intra_Queue
=
Queue
()
Counts_Dang_Intra_Queue
=
Queue
()
Counts_Biot_Intra_Queue
=
Queue
()
Counts_Biot_Intra_Queue
=
Queue
()
Counts_Dang_Inter_Queue
=
Queue
()
Counts_Dang_Inter_Queue
=
Queue
()
Counts_Biot_Inter_Queue
=
Queue
()
Counts_Biot_Inter_Queue
=
Queue
()
Counts_Undigested_Site_Queue
=
Queue
()
Counts_Undigested_Site_Queue
=
Queue
()
Output_Queue_Del
=
Queue
()
write_processes
,
compute_processes
,
reading_process
=
partitionning
(
write_processes
,
compute_processes
,
reading_process
=
partitionning
(
num_threads
num_threads
)
)
...
...
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