-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (49 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
51 lines (49 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "grangers"
version = "0.5.0"
edition = "2021"
authors = ["Dongze He <dhe17@umd.edu>", "Rob Patro <rob@cs.umd.edu>"]
description = "A rust library for working with genomic ranges and annotations."
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/COMBINE-lab/grangers"
homepage = "https://github.com/COMBINE-lab/grangers"
include = [
"/src/lib.rs",
"/src/grangers_info.rs",
"/src/grangers_utils.rs",
"/src/options.rs",
"/src/reader.rs",
"/src/reader/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
]
keywords = ["genomics", "GTF-GFF", "ranges", "genes", "genome-annotation"]
categories = ["science", "data-structures"]
[lib]
doctest = false
[dependencies]
anyhow = "1.0"
flate2 = { version = "1.0.35", features = [
"zlib-ng",
], default-features = false }
noodles = { version = "0.90.0", features = ["gtf", "gff", "fasta", "core"] }
tracing = "0.1.41"
polars = { version = "0.45.1", features = [
"lazy",
"dataframe_arithmetic",
"checked_arithmetic",
"rows",
"dtype-struct",
"dtype-categorical",
"list_eval",
"concat_str",
"strings",
"is_in",
"abs",
] }
rust-lapper = "1.1.0"
lazy_static = "1.5.0"
nutype = "0.5.1"