Skip to content

Commit fd0ecc1

Browse files
committed
updated version number
new major version, 1.0.0, as I've made some backwards incompatible changes. In particular the --removeHomopolymers option has been removed, which means that crass will likely not work on 454 data anymore.
1 parent 1967ea8 commit fd0ecc1

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
crass -- CRisprASSembler -- version 0 subversion 3 revision 12 (0.3.12)
1+
crass -- CRisprASSembler -- version 1 subversion 0 revision 0 (1.0.0)
22
=======================================================================
33

44
CITATION
@@ -13,6 +13,7 @@ COPYRIGHT
1313
---------
1414

1515
Copyright 2011-2015 Connor Skennerton & Michael Imelfort. All rights reserved.
16+
Copyright 2016 Connor Skennerton. All rights reserved.
1617

1718
This program is free software: you can redistribute it and/or modify
1819
it under the terms of the GNU General Public License as published by
@@ -36,7 +37,7 @@ at the following locations:
3637

3738
[Boyer-Moore Search Algorithm](http://dev-faqs.blogspot.com/2010/05/boyer-moore-algorithm.html)
3839

39-
[Wu-Manber Search Algorithm](http://www.oneunified.net/blog/2008/03/23/)
40+
[Aho-Corasick Search Algorithm](https://github.com/mischasan/aho-corasick)
4041

4142
[Levensthein String Comparison Algorithm](http://www.merriampark.com/ldcpp.htm)
4243

@@ -96,17 +97,3 @@ example:
9697

9798
$ ./configure --enable-rendering LDFLAGS="-L/usr/home/user_name/local/lib/" CPPFLAGS="-I/usr/home/user_name/local/include/"
9899

99-
RUNNING CRASS
100-
-------------
101-
102-
crass has two executables:
103-
104-
$ crass [-bcdhklnoswxyDSV] [--removeHomopolymers] [--logToScreen] <sequence_files>
105-
106-
which finds CRISPR containing reads
107-
108-
$ crass-assemble [--velvet | --cap3] -x <file.crispr> -s <segments> -g <group> -i <input directory> [-o]
109-
110-
which is a wrapper for genome assemblers to assemble particular branches in a spacer graph
111-
112-

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.61)
5-
AC_INIT(crass, 0.3.12, c.skennerton@gmail.com)
5+
AC_INIT(crass, 1.0.0, c.skennerton@gmail.com)
66

77
AC_CONFIG_AUX_DIR(build)
88
AC_CONFIG_MACRO_DIR([m4])
@@ -14,9 +14,9 @@ LT_INIT
1414
LT_LANG([C++])
1515
# custom defines for config.h
1616
AC_DEFINE([PACKAGE_FULL_NAME],["CRisprASSembler"],[Define the full name of the package])
17-
AC_DEFINE([PACKAGE_MAJOR_VERSION],[0],[Define the major version of the package])
18-
AC_DEFINE([PACKAGE_MINOR_VERSION],[3],[Define the minor version of the package])
19-
AC_DEFINE([PACKAGE_REVISION],[12],[Define the revision of the package])
17+
AC_DEFINE([PACKAGE_MAJOR_VERSION],[1],[Define the major version of the package])
18+
AC_DEFINE([PACKAGE_MINOR_VERSION],[0],[Define the minor version of the package])
19+
AC_DEFINE([PACKAGE_REVISION],[0],[Define the revision of the package])
2020

2121

2222
# extra configure options

0 commit comments

Comments
 (0)