Skip to content

Commit 40f5829

Browse files
committed
update copyright year
1 parent 52b5252 commit 40f5829

17 files changed

+41
-41
lines changed

INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Name: lambda
22
Author: Hannes Hauswedell <hannes.hauswedell@fu-berlin.de>
33
Maintainer: Hannes Hauswedell <hannes.hauswedell@fu-berlin.de>
4-
License: GPL v3
5-
Copyright: 2013-2017, Hannes Hauswedell; 2016-2017 Knut Reinert, FU-Berlin
4+
License: AGPL v3
5+
Copyright: 2013-2019, Hannes Hauswedell; 2016-2019 Knut Reinert, FU-Berlin
66
Status: under development
77
Description: Lambda is a biological sequence aligner optimized for many
88
query sequences and searches in protein space. It is highly compatible

LICENSE-BSD.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BSD-License (3-clause)
22
======================
33

4-
| Copyright (c) 2016-2017, Knut Reinert, Freie Universität Berlin
4+
| Copyright (c) 2016-2019, Knut Reinert, Freie Universität Berlin
55
| All rights reserved.
66
77
Redistribution and use in source and binary forms, with or without
@@ -26,4 +26,4 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2626
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2727
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2828
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29-
DAMAGE.
29+
DAMAGE.

LICENSE.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lambda copyright
22
================
33
::
44

5-
Copyright (c) 2013-2017, Hannes Hauswedell
5+
Copyright (c) 2013-2019, Hannes Hauswedell
66
All rights reserved.
77

88
Lambda is *free software*: you can redistribute it and/or modify
@@ -21,7 +21,7 @@ rights and obligations implied.
2121
Some of the contributions to Lambda are alternatively or additionally
2222
::
2323

24-
Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
24+
Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
2525

2626
These are covered by the three clause BSD license as can be found in
2727
the file `LICENSE-BSD.rst <./LICENSE-BSD.rst>`__. In cases of doubt
@@ -38,7 +38,7 @@ SeqAn copyright
3838
---------------
3939
::
4040

41-
Copyright (c) 2006-2017, Knut Reinert and Freie Universität Berlin
41+
Copyright (c) 2006-2019, Knut Reinert and Freie Universität Berlin
4242

4343
SeqAn is published under the terms of the three clause BSD license as can
4444
be found in the file `include/seqan/LICENSE <./include/seqan/LICENSE>`__

src/lambda.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.

src/mkindex.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.
@@ -236,7 +236,7 @@ realMain(LambdaIndexerOptions const & options,
236236
if ((options.alphReduction != 0) || (options.dbIndexType != DbIndexType::SUFFIX_ARRAY))
237237
dumpTranslatedSeqs(translatedSeqs, options);
238238

239-
// see if final sequence set actually fits into index
239+
// see if final sequence set actually fits into index
240240
checkIndexSize(translatedSeqs, options, BlastProgramSelector<p>());
241241

242242
if (options.dbIndexType == DbIndexType::FM_INDEX)

src/mkindex_algo.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.
@@ -294,7 +294,7 @@ dumpTranslatedSeqs(TCDStringSet<String<TTransAlph>> const & translatedSeqs,
294294
// out.concat = in.concat;
295295
// out.limits = in.limits;
296296
// }
297-
//
297+
//
298298
// template <typename TSameAlph>
299299
// inline void
300300
// reduceOrSwap(TCDStringSet<String<TSameAlph>> & out,

src/mkindex_misc.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.

src/mkindex_options.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.

src/search.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.

src/search_algo.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ==========================================================================
22
// lambda
33
// ==========================================================================
4-
// Copyright (c) 2013-2017, Hannes Hauswedell <h2 @ fsfe.org>
5-
// Copyright (c) 2016-2017, Knut Reinert and Freie Universität Berlin
4+
// Copyright (c) 2013-2019, Hannes Hauswedell <h2 @ fsfe.org>
5+
// Copyright (c) 2016-2019, Knut Reinert and Freie Universität Berlin
66
// All rights reserved.
77
//
88
// This file is part of Lambda.

0 commit comments

Comments
 (0)