Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
Update version number and the cmake file for change log
Browse files Browse the repository at this point in the history
  • Loading branch information
x-chen committed Oct 6, 2017
1 parent 8ee90dd commit c96587d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v1.2.1 - 2017-10-06
### Added
- Use the BAM mate CIGAR (MC) tag, when present, to improve the accuracy of accessing if a read has extended into adapter sequence (MANTA-1097)
- Add sanity check of specified target regions during configuration (MANTA-1218)
Expand Down
4 changes: 3 additions & 1 deletion src/c++/lib/manta/test/testUtil.hh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
/// Wrap string for handling input streams
class line : public std::string {};

std::istream &operator>>(std::istream &is, line &l)
inline
std::istream&
operator>>(std::istream &is, line &l)
{
std::getline(is, l);
return is;
Expand Down
2 changes: 1 addition & 1 deletion src/cmake/preInstall/copyrightAndChanges/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
#

# Installing top level components
foreach(topfile ChangeLog.txt COPYRIGHT.txt LICENSE.txt)
foreach(topfile CHANGELOG.md COPYRIGHT.txt LICENSE.txt)
install(FILES "${CMAKE_SOURCE_DIR}/${topfile}" DESTINATION "${THIS_DATADIR}")
endforeach()

0 comments on commit c96587d

Please sign in to comment.