Skip to content

Commit

Permalink
Merge pull request #109 from NuttyLogic/development
Browse files Browse the repository at this point in the history
Methylation Calling Max Depth Fix
  • Loading branch information
NuttyLogic authored Mar 30, 2021
2 parents 463b642 + d490926 commit 3fdccea
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions bsbolt/External/HTSLIB/config.log
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ configure:4398: $? = 0
configure:4398: result: yes
configure:4398: checking for srand48_deterministic
configure:4398: gcc -o conftest -Wall -g -O2 -fvisibility=hidden -fvisibility=hidden conftest.c >&5
/usr/bin/ld: /tmp/ccKRiYWC.o: in function `main':
/usr/bin/ld: /tmp/ccow2Qrt.o: in function `main':
/home/colin/Documents/BSBoltDev/BSBolt/bsbolt/External/HTSLIB/conftest.c:61: undefined reference to `srand48_deterministic'
collect2: error: ld returned 1 exit status
configure:4398: $? = 1
Expand Down Expand Up @@ -351,7 +351,7 @@ conftest.c:35:6: warning: conflicting types for built-in function 'log'; expecte
| ^~~
conftest.c:1:1: note: 'log' is declared in header '<math.h>'
1 | /* confdefs.h */
/usr/bin/ld: /tmp/ccyDK3LO.o: in function `main':
/usr/bin/ld: /tmp/ccPtDqyE.o: in function `main':
/home/colin/Documents/BSBoltDev/BSBolt/bsbolt/External/HTSLIB/conftest.c:39: undefined reference to `log'
collect2: error: ld returned 1 exit status
configure:4580: $? = 1
Expand Down Expand Up @@ -514,7 +514,7 @@ configure:5039: $? = 0
configure:5048: result: yes
configure:5179: checking for CCHmac
configure:5179: gcc -o conftest -Wall -g -O2 -fvisibility=hidden -fvisibility=hidden conftest.c -lz -lm >&5
/usr/bin/ld: /tmp/cc0lfQFB.o: in function `main':
/usr/bin/ld: /tmp/ccds9Frq.o: in function `main':
/home/colin/Documents/BSBoltDev/BSBolt/bsbolt/External/HTSLIB/conftest.c:65: undefined reference to `CCHmac'
collect2: error: ld returned 1 exit status
configure:5179: $? = 1
Expand Down Expand Up @@ -590,7 +590,7 @@ configure: failed program was:
configure:5179: result: no
configure:5186: checking for library containing HMAC
configure:5217: gcc -o conftest -Wall -g -O2 -fvisibility=hidden -fvisibility=hidden conftest.c -lz -lm >&5
/usr/bin/ld: /tmp/ccfRKnMI.o: in function `main':
/usr/bin/ld: /tmp/cc9Tf9Ix.o: in function `main':
/home/colin/Documents/BSBoltDev/BSBolt/bsbolt/External/HTSLIB/conftest.c:42: undefined reference to `HMAC'
collect2: error: ld returned 1 exit status
configure:5217: $? = 1
Expand Down
1 change: 1 addition & 0 deletions bsbolt/Utils/Launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def launch_methylation_call(arguments):
min_read_depth=arguments.min,
threads=arguments.t,
verbose=arguments.verbose,
max_read_depth=arguments.max,
min_base_quality=arguments.BQ,
min_mapping_quality=arguments.MQ,
cg_only=arguments.CG,
Expand Down
2 changes: 1 addition & 1 deletion bsbolt/Utils/Parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from bsbolt.Utils.ParserHelpMessages import aggregate_help, alignment_help, impute_help, index_help, meth_help, sim_help


parser = argparse.ArgumentParser(description='BiSulfite Bolt v1.4.4',
parser = argparse.ArgumentParser(description='BiSulfite Bolt v1.4.5',
usage='bsbolt Module {Module Arguments}')

subparsers = parser.add_subparsers(description='Please invoke bsbolt module for help,'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def run(self):


setup(name='bsbolt',
version='1.4.4',
version='1.4.5',
description='Bisulfite Sequencing Processing Platform',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
3 changes: 2 additions & 1 deletion tests/test_alignment_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
f'{bsb_directory}tests/BSB_pe_test.sorted.bam',
'-O', f'{bsb_directory}tests/BSB_pe_test',
'-DB', f'{bsb_directory}tests/TestData/BSB_Test_DB',
'-t', '6', '-verbose', '-BQ', '10', '-MQ', '20', '-BG']
'-t', '6', '-verbose', '-BQ', '10', '-MQ', '20', '-BG',
'-max', '8000']
subprocess.run(bs_call_methylation_args)

# retrieve reference and test alignments
Expand Down

0 comments on commit 3fdccea

Please sign in to comment.