File tree Expand file tree Collapse file tree 4 files changed +43
-3
lines changed Expand file tree Collapse file tree 4 files changed +43
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ members = ["crates/*", "py-deepbiop"]
4
4
default-members = [" crates/*" ]
5
5
6
6
[workspace .package ]
7
- version = " 0.1.14 "
7
+ version = " 0.1.15 "
8
8
edition = " 2021"
9
9
authors = [" Yangyang Li <sunlifeliz5@gmail.com>" ]
10
10
homepage = " https://github.com/cauliyang/DeepBioP"
@@ -61,10 +61,10 @@ flate2 = { version = "1.0.35", features = [
61
61
" zlib-ng" ,
62
62
], default-features = false }
63
63
64
- deepbiop-fq = { version = " 0.1.14 " , path = " crates/deepbiop-fq" }
64
+ deepbiop-fq = { version = " 0.1.15 " , path = " crates/deepbiop-fq" }
65
65
deepbiop-bam = { version = " 0.1.11" , path = " crates/deepbiop-bam" }
66
66
deepbiop-utils = { version = " 0.1.14" , path = " crates/deepbiop-utils" }
67
- deepbiop-fa = { version = " 0.1.14 " , path = " crates/deepbiop-fa" }
67
+ deepbiop-fa = { version = " 0.1.15 " , path = " crates/deepbiop-fa" }
68
68
deepbiop-core = { version = " 0.1.14" , path = " crates/deepbiop-core" }
69
69
70
70
[profile .opt-dev ]
Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.1.15] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-cli-v0.1.14...deepbiop-cli-v0.1.15 ) - 2025-01-22
11
+
12
+ ### Added
13
+
14
+ - Add markdown help option and documentation for deepbiop-cli
15
+ - Update output file extensions for FasToOne and FqsToOne commands to .fa.gz and .fq.gz respectively
16
+ - Add output option for specifying file paths in ExtractFa and ExtractFq commands
17
+ - Update ExtractFa to support optional read selection by path or random count
18
+ - Enhance ExtractFq command to support random selection of reads and update Cargo.toml dependencies
19
+ - Add fas2one and fqs2one commands for batch file conversion
20
+
10
21
## [ 0.1.14] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-cli-v0.1.13...deepbiop-cli-v0.1.14 ) - 2025-01-17
11
22
12
23
### Added
Original file line number Diff line number Diff line change @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.1.15] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-fa-v0.1.14...deepbiop-fa-v0.1.15 ) - 2025-01-22
11
+
12
+ ### Added
13
+
14
+ - Add random selection functionality for FASTQ records and expose it to Python
15
+ - Add functions to combine multiple FASTA and FASTQ files into bgzip-compressed formats
16
+ - Add fas2one and fqs2one commands for batch file conversion
17
+
18
+ ### Other
19
+
20
+ - ♻️ Optimize record selection in select_record_from_fq_by_random function using for loop
21
+ - ♻️ Refactor select_record_from_fq_by_random function to use reservoir sampling algorithm
22
+ - Update fetch_records method to use fastq reader and improve record handling
23
+
10
24
## [ 0.1.14] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-fa-v0.1.13...deepbiop-fa-v0.1.14 ) - 2025-01-17
11
25
12
26
### Added
Original file line number Diff line number Diff line change @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.1.15] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-fq-v0.1.14...deepbiop-fq-v0.1.15 ) - 2025-01-22
9
+
10
+ ### Added
11
+
12
+ - Add random selection functionality for FASTQ records and expose it to Python
13
+ - Enhance ExtractFq command to support random selection of reads and update Cargo.toml dependencies
14
+ - Add functions to combine multiple FASTA and FASTQ files into bgzip-compressed formats
15
+ - Add fas2one and fqs2one commands for batch file conversion
16
+
17
+ ### Other
18
+
19
+ - ♻️ Optimize record selection in select_record_from_fq_by_random function using for loop
20
+ - ♻️ Refactor select_record_from_fq_by_random function to use reservoir sampling algorithm
21
+ - Update fetch_records method to use fastq reader and improve record handling
22
+
8
23
## [ 0.1.14] ( https://github.com/cauliyang/DeepBioP/compare/deepbiop-fq-v0.1.13...deepbiop-fq-v0.1.14 ) - 2025-01-17
9
24
10
25
### Added
You can’t perform that action at this time.
0 commit comments