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

Commit

Permalink
On request added the enzyme AvaII
Browse files Browse the repository at this point in the history
  • Loading branch information
koen authored and koen committed Jun 24, 2015
1 parent 61d70d5 commit 4278e2d
Show file tree
Hide file tree
Showing 6 changed files with 387 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,7 @@ v1.1.1

v1.1.2
* Updated barcode recognition for single read modus in the demultiplexer: when a read can be assigned to multiple samples,
the read is considered as unvalid (previous was first sample)
the read is considered as unvalid (previous was first sample)

v1.1.3
* On request added the enzyme AvaII
380 changes: 380 additions & 0 deletions releases/GBSX_v1.1.3/GBSX_digest_v1.0.pl

Large diffs are not rendered by default.

Binary file not shown.
Binary file added releases/latest/GBSX_v1.1.3.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/be/uzleuven/gc/logistics/GBSX/GBSX.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class GBSX {

public static final boolean DEBUG = false;
public final static String VERSION = "GBSX v1.1.2";
public final static String VERSION = "GBSX v1.1.3";
private final static String LICENCE = "GPLv3";

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ public enum EnzymeEnum implements Enzyme{

NSPI ("NspI", new String[]{"CATGT", "CATGC"}),

AVAII ("AvaII", new String[]{"GACC", "GTCC"}),

NAN ("NA", new String[]{""});

private final String name;
Expand Down

0 comments on commit 4278e2d

Please sign in to comment.