-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from USDA-ARS-GBRU/dockerpatch
Dockerpatch
- Loading branch information
Showing
6 changed files
with
21 additions
and
25 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# v0.4.0 | ||
|
||
* changed the cli flag `--filter_by_locus` to `--filter_by_attribute` and added the flag `--attribute_key` so that keys other than the addribute key "locus_tag" can be filtered. | ||
* Changed the cli to add `--raw_output_only`. This option allows the user to just get hte guides that met LSR and distance criteria without doing any parsing of the genome annotation files. | ||
* updated caching for Streamlit 1.26 | ||
* updated GC and position methods for Biopython 1.8.1 | ||
* replaced append methods with concat methods for Pandas 2.1.1 | ||
* output data is now gzipped | ||
* updated Dockerfile to use minimamba base image | ||
* | ||
* changed the cli flag `--filter_by_locus` to `--filter_by_attribute` and added the flag `--attribute_key` so that keys other than the addribute key "locus_tag" can be filtered. | ||
* Changed the cli to add `--raw_output_only`. This option allows the user to just get hte guides that met LSR and distance criteria without doing any parsing of the genome annotation files. | ||
* updated caching for Streamlit 1.26 | ||
* updated GC and position methods for Biopython 1.8.1 | ||
* replaced append methods with concat methods for Pandas 2.1.1 | ||
* output data is now gzipped | ||
* updated Dockerfile to use minimamba base image | ||
* Updates to python dependencies | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
import os | ||
import yaml | ||
import textwrap | ||
import pandas as pd | ||
|
||
|
||
import pybedtools | ||
from Bio import SeqIO | ||
|