Skip to content

Commit d99326b

Browse files
authored
v0.3.2 (#71)
1 parent c94bbab commit d99326b

File tree

8 files changed

+34
-8
lines changed

8 files changed

+34
-8
lines changed

oxbow/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oxbow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxbow"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"

py-oxbow/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

py-oxbow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py-oxbow"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66

r-oxbow/DESCRIPTION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ Description:
1111
License: MIT OR Apache-2.0
1212
Encoding: UTF-8
1313
Roxygen: list(markdown = TRUE)
14-
RoxygenNote: 7.2.3
15-
Config/rextendr/version: 0.3.1.9000
14+
RoxygenNote: 7.3.2
15+
Config/rextendr/version: 0.3.1.9001
16+
SystemRequirements: Cargo (Rust's package manager), rustc

r-oxbow/NAMESPACE

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export(read_bam)
4+
export(read_bam_vpos)
45
export(read_bcf)
6+
export(read_bcf_vpos)
7+
export(read_fasta)
8+
export(read_fastq)
59
export(read_vcf)
10+
export(read_vcf_vpos)
611
useDynLib(oxbow, .registration = TRUE)

r-oxbow/R/extendr-wrappers.R

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,37 @@
1111
#' @useDynLib oxbow, .registration = TRUE
1212
NULL
1313

14+
#' Return Arrow IPC format from a FASTA file.
15+
#' @export
16+
read_fasta <- function(path, region) .Call(wrap__read_fasta, path, region)
17+
18+
#' Return Arrow IPC format from a FASTQ file.
19+
#' @export
20+
read_fastq <- function(path) .Call(wrap__read_fastq, path)
21+
1422
#' Return Arrow IPC format from a BAM file.
1523
#' @export
1624
read_bam <- function(path, region) .Call(wrap__read_bam, path, region)
1725

26+
#' Return Arrow IPC format from a BAM file.
27+
#' @export
28+
read_bam_vpos <- function(path, cpos_lo, upos_lo, cpos_hi, upos_hi) .Call(wrap__read_bam_vpos, path, cpos_lo, upos_lo, cpos_hi, upos_hi)
29+
1830
#' Return Arrow IPC format from a VCF file.
1931
#' @export
2032
read_vcf <- function(path, region) .Call(wrap__read_vcf, path, region)
2133

34+
#' Return Arrow IPC format from a VCF file.
35+
#' @export
36+
read_vcf_vpos <- function(path, cpos_lo, upos_lo, cpos_hi, upos_hi) .Call(wrap__read_vcf_vpos, path, cpos_lo, upos_lo, cpos_hi, upos_hi)
37+
2238
#' Return Arrow IPC format from a BCF file.
2339
#' @export
2440
read_bcf <- function(path, region) .Call(wrap__read_bcf, path, region)
2541

42+
#' Return Arrow IPC format from a BCF file.
43+
#' @export
44+
read_bcf_vpos <- function(path, cpos_lo, upos_lo, cpos_hi, upos_hi) .Call(wrap__read_bcf_vpos, path, cpos_lo, upos_lo, cpos_hi, upos_hi)
45+
2646

2747
# nolint end

r-oxbow/src/rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)