Skip to content

Commit 65d4eaa

Browse files
committed
v0.0.10
1 parent c15697c commit 65d4eaa

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ endif
1414
EXTRA_FLAGS = -Wall -Wno-misleading-indentation -Wno-unused-function #-Wno-unused-variable -Wno-alloc-size-larger-than
1515

1616
# Define the version number
17-
VERSION=0.0.9
17+
VERSION=0.0.10
1818
# Get the Git commit hash
1919
GIT_COMMIT := $(shell git rev-parse --short HEAD 2> /dev/null)
2020
ifneq ($(GIT_COMMIT),)

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<!-- [![Published in Bioinformatics](https://img.shields.io/badge/Published%20in-Bioinformatics-blue.svg)](https://dx.doi.org/10.1093/bioinformatics/btaa963) -->
1111
<!-- [![GitHub Issues](https://img.shields.io/github/issues/yangao07/longcallD.svg?label=Issues)](https://github.com/yangao07/longcallD/issues) -->
1212

13-
## Updates (release v0.0.9)
13+
## Updates (release v0.0.10)
1414

15-
* Fix variant calling close to start/end boundaries of chromosomes
15+
<!-- * Fix variant calling close to start/end boundaries of chromosomes -->
1616
* Add `--out-sv-rnames` and `--out-som-sv-rnames` to output SV-supporing read names (tag: `SVREADS`) in FORMAT field of VCF
1717
* Add `CLEAN` INFO tag for variants in clean regions, i.e., SNPs or simple small indels (≤5bp) in non-repetitive regions which are generally more reliable, to help with downstream filtering and benchmarking
1818

@@ -21,11 +21,11 @@
2121
```sh
2222
# Download pre-built executables and test data (recommended)
2323
# Linux-x64
24-
wget https://github.com/yangao07/longcallD/releases/download/v0.0.9/longcallD-v0.0.9_x64-linux.tar.gz
25-
tar -zxvf longcallD-v0.0.9_x64-linux.tar.gz && cd longcallD-v0.0.9_x64-linux
24+
wget https://github.com/yangao07/longcallD/releases/download/v0.0.10/longcallD-v0.0.10_x64-linux.tar.gz
25+
tar -zxvf longcallD-v0.0.10_x64-linux.tar.gz && cd longcallD-v0.0.10_x64-linux
2626
# MacOS-arm64
27-
wget https://github.com/yangao07/longcallD/releases/download/v0.0.9/longcallD-v0.0.9_arm64-macos.tar.gz
28-
tar -zxvf longcallD-v0.0.9_arm64-macos.tar.gz && cd longcallD-v0.0.9_arm64-macos
27+
wget https://github.com/yangao07/longcallD/releases/download/v0.0.10/longcallD-v0.0.10_arm64-macos.tar.gz
28+
tar -zxvf longcallD-v0.0.10_arm64-macos.tar.gz && cd longcallD-v0.0.10_arm64-macos
2929

3030
# PacBio HiFi reads
3131
./longcallD call ./test_data/chr11_2M.fa ./test_data/HG002_chr11_hifi_test.bam --hifi > HG002_hifi_test.vcf
@@ -37,7 +37,7 @@ man ./longcallD.1
3737
``` -->
3838

3939
## Table of Contents
40-
- [Updates (release v0.0.9)](#updates-release-v009)
40+
- [Updates (release v0.0.10)](#updates-release-v0010)
4141
- [Getting Started](#getting-started)
4242
- [Table of Contents](#table-of-contents)
4343
- [Introduction](#introduction)
@@ -84,13 +84,13 @@ Providing the annotation sequence of common mobile elements, i.e., Alu/L1/SVA, u
8484
### Pre-built executables (recommended)
8585
**Linux-x64**
8686
```
87-
wget https://github.com/yangao07/longcallD/releases/download/v0.0.9/longcallD-v0.0.9_x64-linux.tar.gz
88-
tar -zxvf longcallD-v0.0.9_x64-linux.tar.gz
87+
wget https://github.com/yangao07/longcallD/releases/download/v0.0.10/longcallD-v0.0.10_x64-linux.tar.gz
88+
tar -zxvf longcallD-v0.0.10_x64-linux.tar.gz
8989
```
9090
**MacOS-arm64**
9191
```
92-
wget https://github.com/yangao07/longcallD/releases/download/v0.0.9/longcallD-v0.0.9_arm64-macos.tar.gz
93-
tar -zxvf longcallD-v0.0.9_arm64-macos.tar.gz
92+
wget https://github.com/yangao07/longcallD/releases/download/v0.0.10/longcallD-v0.0.10_arm64-macos.tar.gz
93+
tar -zxvf longcallD-v0.0.10_arm64-macos.tar.gz
9494
```
9595

9696
**Linux-arm64/macOS-x64**
@@ -106,9 +106,9 @@ conda install -c bioconda longcalld
106106
### Build from source
107107
To compile longcallD from source, ensure you have **GCC/clang(9.0+)** and **zlib/libbz2/liblzma/libcurl** (for htslib) installed.
108108
```
109-
wget https://github.com/yangao07/longcallD/releases/download/v0.0.9/longcallD-v0.0.9.tar.gz
110-
tar -zxvf longcallD-v0.0.9.tar.gz
111-
cd longcallD-v0.0.9; make
109+
wget https://github.com/yangao07/longcallD/releases/download/v0.0.10/longcallD-v0.0.10.tar.gz
110+
tar -zxvf longcallD-v0.0.10.tar.gz
111+
cd longcallD-v0.0.10; make
112112
```
113113

114114
## Usage

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
const char PROG[20] = "longcallD";
1010
const char DESCRIP[100] = "local-haplotagging-based small and structural variant calling";
1111
#ifndef LONGCALLD_VERSION
12-
const char LONGCALLD_VERSION[20] = "0.0.9";
12+
const char LONGCALLD_VERSION[20] = "0.0.10";
1313
#endif
1414
const char CONTACT[50] = "yangao@ds.dfci.harvard.edu";
1515
int LONGCALLD_VERBOSE = 0;

0 commit comments

Comments
 (0)