Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ffca731
Makefile.am: adding radmeth_model.cpp to sources
andrewdavidsmith Jul 21, 2025
c5d8645
src/analysis/nanopore.cpp: removing a debug variable
andrewdavidsmith Jul 21, 2025
9fd69ad
src/radmeth/radmeth_optimize.cpp: major rewrite for speed within the …
andrewdavidsmith Jul 21, 2025
85d9818
src/radmeth/radmeth_model.cpp: adding the radmeth_model.cpp source file
andrewdavidsmith Jul 21, 2025
ba4dc52
src/radmeth/radmeth_model.hpp: cleanup and adding some functions to h…
andrewdavidsmith Jul 21, 2025
99df6b7
src/radmeth/radmeth.cpp: using multi-threaded
andrewdavidsmith Jul 21, 2025
df6ec6a
src/radmeth/radmeth.cpp: removing some accidental code..
andrewdavidsmith Jul 21, 2025
d65e24d
src/radmeth/radmeth_optimize.hcpp: fixing includes
andrewdavidsmith Jul 21, 2025
53d9ba9
src/radmeth/radmeth.cpp: changing strategies for parallelism to get c…
andrewdavidsmith Jul 21, 2025
5b8c1d3
src/radmeth/radmeth_model.hcpp: changing the design matrix to uint8_t…
andrewdavidsmith Jul 22, 2025
6093554
src/radmeth/radmeth_optimize.cpp: changes to allow the desig matrix t…
andrewdavidsmith Jul 22, 2025
07b45d0
src/radmeth/radmeth.cpp: moving code for IO for Design into radmeth_m…
andrewdavidsmith Jul 22, 2025
f063a4f
src/radmeth/radmeth.cpp: showing progress after it has been done, pre…
andrewdavidsmith Jul 22, 2025
a218564
docs/content/radmeth.md: updating docs for radmeth
andrewdavidsmith Jul 22, 2025
006bdac
src/radmeth/radmeth_model.cpp: changing default parameter values: tol…
andrewdavidsmith Jul 22, 2025
a88951d
src/radmeth/radmeth.cpp: adding cli args for tolerance and max-iter i…
andrewdavidsmith Jul 22, 2025
439cdcc
docs/content/radmeth.md: adding description of the cli args for toler…
andrewdavidsmith Jul 22, 2025
175a078
src/radmeth/radmeth_optimize.cpp: using a tolerance that is a multipl…
andrewdavidsmith Jul 22, 2025
8c38ac2
docs/content/radmeth.md: updating the explanation of the tolerance pa…
andrewdavidsmith Jul 22, 2025
549f31a
src/radmeth/radmeth_model.cpp: refactored transpose
andrewdavidsmith Jul 22, 2025
15ca070
src/radmeth/radmeth_model.hpp: declaring scratch space for the p_v ve…
andrewdavidsmith Jul 22, 2025
dd2e264
src/radmeth/radmeth_optimize.cpp: slight changes to some numerical ca…
andrewdavidsmith Jul 22, 2025
a767a6e
src/utils/selectsites.cpp: adding an option to read sites with additi…
andrewdavidsmith Jul 22, 2025
2595624
docs/content/radmeth.md: updating numbers for changes in radmeth code
andrewdavidsmith Jul 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ dnmtools_SOURCES += src/amrfinder/amrtester.cpp
dnmtools_SOURCES += src/radmeth/dmr.cpp
dnmtools_SOURCES += src/radmeth/methdiff.cpp
dnmtools_SOURCES += src/radmeth/radmeth_optimize.cpp
dnmtools_SOURCES += src/radmeth/radmeth_model.cpp
dnmtools_SOURCES += src/radmeth/radmeth.cpp
dnmtools_SOURCES += src/radmeth/radmeth-adjust.cpp
dnmtools_SOURCES += src/radmeth/radmeth-merge.cpp
Expand Down
446 changes: 255 additions & 191 deletions docs/content/radmeth.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/analysis/nanopore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,6 @@ consistent_existing_targets(
return true;
}

int counter{};
struct read_processor {
static constexpr auto default_expected_basecall_model =
"dna_r10.4.1_e8.2_400bps_hac@v4.3.0";
Expand Down
Loading