Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DEploid-dev/DEploid-Utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
shajoezhu committed Dec 22, 2024
2 parents ca8a388 + 651cec1 commit 09d97ad
Show file tree
Hide file tree
Showing 26 changed files with 41 additions and 2,784 deletions.
32 changes: 26 additions & 6 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,33 @@
LICENSE
.github
\*\.o
src/vcf/vcfReader.o
src/vcf/gzstream/gzstream.o
src/vcf/txtReader.o
src/vcf/variantIndex.o
src/vcf/vcfReaderDebug.o
DEploid.utils/libs/DEploid.utils.so
\*\.png
\*\.pdf
DEploid-vcf-lib
codecov.yml


# submodule
vcf/src/gzstream/version
src/vcf/.git
src/vcf/.ci/
src/vcf/.circleci/
src/vcf/.github/
src/vcf/.gitignore
src/vcf/Brewfile
src/vcf/COPYING
src/vcf/CPPLINT.cfg
src/vcf/Makefile.am
src/vcf/README.md
src/vcf/bootstrap
src/vcf/configure.ac
src/vcf/coverage/
src/vcf/data/
src/vcf/main.cpp
src/vcf/tests/
src/vcf/version
src/vcf/src/gzstream/gzstream.o
src/vcf/src/txtReader.o
src/vcf/src/variantIndex.o
src/vcf/src/vcfReader.o
src/vcf/src/vcfReaderDebug.o
2 changes: 2 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: r-lib/actions/setup-pandoc@v2

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: r-lib/actions/pr-fetch@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: r-lib/actions/setup-r@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "DEploid-vcf-lib"]
path = DEploid-vcf-lib
path = src/vcf
url = https://github.com/DEploid-dev/DEploid-vcf-lib
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: DEploid.utils
Title: 'DEploid' Data Analysis and Results Interpretation
Version: 0.0.1
Version: 0.0.2
Authors@R: c(
person("Joe", "Zhu", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-7566-2787")),
Expand Down
12 changes: 6 additions & 6 deletions src/Makevars.win
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
OBJECTS.vcfr = rvcf.o \
RcppExports.o \
vcf/txtReader.o \
vcf/variantIndex.o \
vcf/vcfReader.o \
vcf/gzstream/gzstream.o \
vcf/vcfReaderDebug.o
vcf/src/txtReader.o \
vcf/src/variantIndex.o \
vcf/src/vcfReader.o \
vcf/src/gzstream/gzstream.o \
vcf/src/vcfReaderDebug.o

OBJECTS = $(OBJECTS.vcfr)
PKG_CXXFLAGS = -I/usr/share/R/include/ -Ivcf/ -Ivcf/gzstream/ -DVERSION="\"R\"" -DRBUILD -DSTRICT_R_HEADERS
PKG_CXXFLAGS = -I/usr/share/R/include/ -Ivcf/src/ -Ivcf/src/gzstream/ -DVERSION="\"R\"" -DRBUILD -DSTRICT_R_HEADERS
PKG_LIBS = -lz
2 changes: 1 addition & 1 deletion src/rvcf.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Rcpp.h>
#include "vcf/vcfReader.hpp"
#include "vcf/src/vcfReader.hpp"

using namespace Rcpp;

Expand Down
Submodule vcf updated from 000000 to 9942cf
271 changes: 0 additions & 271 deletions src/vcf/exceptions.hpp

This file was deleted.

Loading

0 comments on commit 09d97ad

Please sign in to comment.