Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.6 update docs #103

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ github_pages_url <- description$GITHUB_PAGES

<p style="font-size: 16px;"><em>Public Database Submission Pipeline</em></p>

**Beta Version**: v1.2.5. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!
**Beta Version**: v1.2.6. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!

**General Disclaimer**: This repository was created for use by CDC programs to collaborate on public health related projects in support of the [CDC mission](https://www.cdc.gov/about/organization/mission.htm). GitHub is not hosted by the CDC, but is a third party website used by CDC and its partners to share information and collaborate on software. CDC use of GitHub does not imply an endorsement of any one particular service, product, or enterprise.

Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# SeqSender
## Public Database Submission Pipeline

<!-- ![build](https://github.com/montilab/cadra/workflows/rcmdcheck/badge.svg) -->
![Docker pulls](https://img.shields.io/docker/pulls/cdcgov/seqsender)
![Docker image size](https://img.shields.io/docker/image-size/cdcgov/seqsender)
![GitHub last commit](https://img.shields.io/github/last-commit/cdcgov/seqsender)

<!-- ![GitHub issues](https://img.shields.io/github/issues/montilab/cadra) -->

<!-- ![GitHub last commit](https://img.shields.io/github/last-commit/montilab/cadra) -->

<p style="font-size: 16px;">

<em>Public Database Submission Pipeline</em>

</p>

**Beta Version**: 1.2.5. This pipeline is currently in Beta testing, and
**Beta Version**: 1.2.6. This pipeline is currently in Beta testing, and
issues could appear during submission. Please use it at your own risk.
Feedback and suggestions are welcome\!

Expand Down
10 changes: 6 additions & 4 deletions config/biosample/Beta-lactamase_1_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/Human_1_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/Invertebrate_1_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_agriculture_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_air_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_built_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_food-animal_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_food-farm_env_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_food-human_foods_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_food-prod_facility_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_host-associated_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_human-associated_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_human-gut_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_human-oral_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_human-skin_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_human-vaginal_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_hydrocarbon-cores_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
10 changes: 6 additions & 4 deletions config/biosample/MIGS_ba_hydrocarbon-fluids_swabs_6_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
),
"bs-sample_title": Column(
dtype="object",
checks=None,
nullable=True,
checks=[
Check.str_matches(r"^(?!\s*$).+"),
],
nullable=False,
unique=False,
coerce=False,
required=False,
description="Optional additional title for sample. Will be autogenerated by NCBI if not provided.",
required=True,
description="Descriptive title for sample.",
title="sample title",
),
"bs-sample_description": Column(
Expand Down
Loading
Loading