-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eef1481
commit 0174e41
Showing
3 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- family-names: Plaza Oñate | ||
given-names: Florian | ||
email: [email protected] | ||
affiliation: INRAE | ||
- family-names: Le Chatelier | ||
given-names: Emmanuelle | ||
email: [email protected] | ||
affiliation: INRAE | ||
title: "ESKRIM: EStimate with K-mers the RIchness in a Microbiome" | ||
version: 1.0.9 | ||
date-released: 2024-07-24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,9 +59,3 @@ __From our experience, the sum 'num_solid_kmers + num_mercy_kmers' is an accurat | |
|
||
**WARNING**: Do not consider results when *num_selected_reads* is strictly lower than *target_num_reads*.\ | ||
In this case, ignore the samples concerned or decrease the number of reads to be drawn randomly (*-r* parameter). | ||
|
||
## Authors ## | ||
|
||
* Florian Plaza Oñate: [email protected] | ||
* Emmanuelle Le Chatelier: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "eskrim" | ||
version = "1.0.9" | ||
description = "ESKRIM: EStimate with K-mers the RIchness in a Microbiome" | ||
authors = ["Florian Plaza Oñate <[email protected]>"] | ||
authors = [ | ||
"Florian Plaza Oñate <[email protected]>", | ||
"Emmanuelle Le Chatelier <[email protected]>", | ||
] | ||
license = "GPL-3.0-or-later" | ||
readme = "README.md" | ||
keywords = ["Metagenomics"] | ||
|
@@ -12,11 +15,9 @@ classifiers = [ | |
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics" | ||
] | ||
packages = [ | ||
{ include = "eskrim" }, | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
packages = [{ include = "eskrim" }] | ||
|
||
[tool.poetry.scripts] | ||
eskrim = "eskrim.eskrim:main" | ||
|