Skip to content
This repository was archived by the owner on Aug 6, 2021. It is now read-only.

Commit a3d94ad

Browse files
committed
GBSX v1.3
Added multithreaded support. Use the -t parameter to change the number of threads
1 parent 5157d74 commit a3d94ad

25 files changed

+2103
-1341
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,18 @@ UZ – KU Leuven
3333
Herestraat 49 PO box 602
3434
B-3000 Leuven, Belgium
3535

36-
Mail: [genomicscore@uzleuven.be](mailto:genomicscore@uzleuven.be "")
36+
Mail: [koen.herten@kuleuven.be](mailto:koen.herten@kuleuven.be "")
3737

3838

3939
## Citing GBSX
4040

4141
We ask that you cite this paper if you use GBSX in work that leads to
4242
publication.
4343

44-
> Herten,K et al. (2015) GBSX: a toolkit for experimental design and
45-
demultiplexing genotyping by sequencing experiments BMC Bioinformatics 2015, 16:73 doi:10.1186/s12859-015-0514-3
44+
> Herten, Koen and Hestand, Matthew S. and Vermeesch, Joris R. and Van Houdt,
45+
Jeroen KJ (2015) GBSX: a toolkit for experimental design and demultiplexing
46+
genotyping by sequencing experiments BMC Bioinformatics 2015, 16:73
47+
doi:10.1186/s12859-015-0514-3
4648

4749
## Help
4850

@@ -118,6 +120,7 @@ These parameters are optional:
118120
paired-end sequencing)
119121
* `-o` the name of the output directory (standard the directory of the
120122
call)
123+
* `-t` the number of threads to use (standard 1)
121124
* `-lf` use long file names (standard false) filename is standard the
122125
sample name, long file names is sample name _ barcode _ enzyme
123126
* `-rad` if the data is rad data or not (-rad true for RAD data, -rad
@@ -263,4 +266,8 @@ v1.1.5
263266

264267
v1.2
265268
* Deleted Demultiplexer option -m
266-
* Code Clean-up
269+
* Code Clean-up
270+
271+
v1.3
272+
* Removal of the filelock class, ReentrantLock is now used
273+
* The demultiplexing is now multithreaded: use -t NumberOfThreads

releases/GBSX_v1.3/GBSX_digest_v1.1.pl

Lines changed: 382 additions & 0 deletions
Large diffs are not rendered by default.

releases/latest/GBSX_v1.3.jar

297 KB
Binary file not shown.

simulation_scripts/.Rhistory

Whitespace-only changes.

src/be/uzleuven/gc/logistics/GBSX/GBSX.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This is GBSX v1.0. A toolkit for experimental design and demultiplexing genotyping by sequencing experiments.
2+
* This is GBSX v1.3. A toolkit for experimental design and demultiplexing genotyping by sequencing experiments.
33
*
44
* Copyright 2014 KU Leuven
55
*
@@ -35,7 +35,7 @@
3535
public class GBSX {
3636

3737
public static final boolean DEBUG = false;
38-
public final static String VERSION = "GBSX v1.2";
38+
public final static String VERSION = "GBSX v1.3";
3939
private final static String LICENCE = "GPLv3";
4040

4141
/**

src/be/uzleuven/gc/logistics/GBSX/demultiplexer/GBSdemultiplex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
public class GBSdemultiplex {
3737

3838
public static final boolean DEBUG = false;
39-
public final static String VERSION = "GBSX demultiplex v2";
39+
public final static String VERSION = "GBSX demultiplex v3";
4040
public final static String LICENCE = "GPLv3";
4141

4242
/*

0 commit comments

Comments
 (0)