Skip to content

Commit 9aa9bd0

Browse files
v 0.13
1 parent 8d89a05 commit 9aa9bd0

File tree

198 files changed

+2294
-701
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+2294
-701
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
4-
release:
5-
types: [published]
4+
workflow_dispatch:
65

76
name: test-coverage
87

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package: MiscMetabar
22
Type: Package
33
Title: Miscellaneous Functions for Metabarcoding Analysis
4-
Version: 0.12.1
4+
Version: 0.13.0
55
Authors@R: person("Adrien", "Taudière", email = "adrien.taudiere@zaclys.net",
66
role = c("aut", "cre", "cph"), comment = c(ORCID = "0000-0003-1088-1182"))
77
Description: Facilitate the description, transformation, exploration, and reproducibility of metabarcoding analyses. 'MiscMetabar' is mainly built on top of the 'phyloseq', 'dada2' and 'targets' R packages. It helps to build reproducible and robust bioinformatics pipelines in R. 'MiscMetabar' makes ecological analysis of alpha and beta-diversity easier, more reproducible and more powerful by integrating a large number of tools. Important features are described in Taudière A. (2023) <doi:10.21105/joss.06038>.
88
License: AGPL-3
99
Encoding: UTF-8
1010
LazyData: true
1111
Depends:
12-
R (>= 3.5.0),
12+
R (>= 4.1.0),
1313
phyloseq,
1414
ggplot2 (>= 3.5.0),
1515
dada2,

NAMESPACE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export(all_object_size)
1919
export(ancombc_pq)
2020
export(are_modality_even_depth)
2121
export(as_binary_otu_table)
22+
export(assign_blastn)
2223
export(assign_idtaxa)
2324
export(assign_sintax)
2425
export(assign_vsearch_lca)
@@ -115,6 +116,7 @@ export(read_pq)
115116
export(rename_samples)
116117
export(rename_samples_otu_table)
117118
export(reorder_taxa_pq)
119+
export(resolve_vector_ranks)
118120
export(ridges_pq)
119121
export(rotl_pq)
120122
export(sam_data_matching_names)

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# MiscMetabar 0.13.0 (in development)
2+
3+
- Add function [assign_blastn()] and add a method `blast` in the function [add_new_taxonomy_pq()].
4+
- Add function [resolve_vector_ranks()] to resolve conflict in a vector of taxonomy values
5+
16
# MiscMetabar 0.12.1 (in development)
27

38
- Add parameter name `min_bootstrap` in [add_new_taxonomy_pq()]

R/MiscMetabar-package.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if (getRversion() >= "2.15.1") {
2828
"na_remove", "stratum", "to_lodes_form", "clean_fastq", "clean_sam",
2929
"samples_names_common", "seq_id", "alpha_hill", "Modality", "Type", "complexity",
3030
"value_bootstrap", "LearnTaxa", "OrientNucleotides", "RemoveGaps",
31-
"method", "readDNAStringSet"
31+
"method", "readDNAStringSet", "Taxa name"
3232
))
3333
}
3434

0 commit comments

Comments
 (0)