Skip to content

Commit 44710c2

Browse files
committed
move meta informatino to pyproject.toml
1 parent db961ca commit 44710c2

File tree

5 files changed

+709
-680
lines changed

5 files changed

+709
-680
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2020, macs3 project team All rights reserved.
3+
Copyright (c) 2024, macs3 project team All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

MACS3/Utilities/Constants.py

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
MACS_VERSION = "3.0.2"
22
MAX_PAIRNUM = 1000
3-
MAX_LAMBDA = 100000
4-
FESTEP = 20
5-
BUFFER_SIZE = 100000 # np array will increase at step of 1 million items
6-
READ_BUFFER_SIZE = 10000000 # 10M bytes for read buffer size
7-
N_MP = 2 # Number of processers
3+
MAX_LAMBDA = 100000
4+
FESTEP = 20
5+
BUFFER_SIZE = 100000 # np array will increase at step of 1 million items
6+
READ_BUFFER_SIZE = 10000000 # 10M bytes for read buffer size
7+
N_MP = 2 # Number of processers
88

9-
#Effective genome size, collected from
10-
#https://deeptools.readthedocs.io/en/develop/content/feature/effectiveGenomeSize.html
11-
12-
EFFECTIVEGS = {"hs":2913022398, #GRCh38
13-
"mm":2652783500, #GRCm38
14-
"ce":100286401, #WBcel235
15-
"dm":142573017} #dm6
9+
# Effective genome size, collected from
10+
# https://deeptools.readthedocs.io/en/develop/content/feature/effectiveGenomeSize.html
11+
EFFECTIVEGS = {"hs": 2913022398, # GRCh38
12+
"mm": 2652783500, # GRCm38
13+
"ce": 100286401, # WBcel235
14+
"dm": 142573017} # dm6

0 commit comments

Comments
 (0)