Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2024-11-05 Lauren Coombe <lcoombe@bcgsc.ca>

* Release version 1.2.8
* Add optional parameter 'prefix' to `arcs-make` - if specified, soft-links the final scaffolds fasta file to a file with this prefix
* Update documentation

2024-03-25 Lauren Coombe <lcoombe@bcgsc.ca>

* Release version 1.2.7
Expand Down
2 changes: 1 addition & 1 deletion bin/arcs-make
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ clean:
@echo "Clean Done"

version:
@echo "arcs-make v1.2.7"
@echo "arcs-make v1.2.8"

#Preprocessing

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(arcs, 1.2.7, lcoombe@bcgsc.ca)
AC_INIT(arcs, 1.2.8, lcoombe@bcgsc.ca)
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_CONFIG_SRCDIR([Arcs/Arcs.cpp])
AC_CONFIG_HEADER([config.h])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="arcs",
version="1.2.7",
version="1.2.8",
description="Scaffolding genome sequence assemblies using linked or long read sequencing data",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down