Skip to content

Commit

Permalink
[test,fix,chore] Fix workflow test, rm build.h, fix fprintf str
Browse files Browse the repository at this point in the history
  • Loading branch information
isinaltinkaya committed Dec 19, 2023
1 parent 76f7c61 commit 9d4a4da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -19,7 +19,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install libcurl4-openssl-dev
- name: make
run: make
- name: Install htslib
run: sudo apt-get install libhts3 libhts-dev
- name: make HTSSRC="systemwide"
run: make HTSSRC="systemwide"
- name: make test
run: make test
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,6 +8,7 @@ test/*_test*
*.swp
output.*
version.h
build.h

vgcore*

Expand Down
6 changes: 0 additions & 6 deletions build.h

This file was deleted.

2 changes: 1 addition & 1 deletion io.cpp
Expand Up @@ -834,7 +834,7 @@ argStruct* args_get(int argc, char** argv) {
// PRINT ARGUMENTS

ASSERT(asprintf(&args->versionInfo, "vcfgl [version: %s] [build: %s %s] [htslib: %s]\n", VCFGL_VERSION, __DATE__, __TIME__, hts_version()));
fprintf(stderr, args->versionInfo);
fprintf(stderr,"\n%s\n", args->versionInfo);
fprintf(args->arg_fp, args->versionInfo);

char depth_val[1024];
Expand Down

0 comments on commit 9d4a4da

Please sign in to comment.