-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to environments. - Add fuzzy matching to problematic environments (dastool, semibin) - Added full channel set to environments (some only had bioconda) Bug fix for edge case in `Filter-Complete-Contigs.py`: Dataset consisting of only bins with 100% completeness raises an error in plotting the histogram due to improper bin sizes. Bug fix adds conditional statement to handle this case.
- Loading branch information
Showing
9 changed files
with
32 additions
and
202 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
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,7 +1,8 @@ | ||
name: dastool_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- das_tool == 1.1.3 | ||
- das_tool = 1.1 | ||
|
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,8 +1,8 @@ | ||
name: gtdbtk_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- gtdbtk == 2.1.1 | ||
- python == 3.7 | ||
- gtdbtk == 2.1.1 | ||
- python == 3.7 |
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,7 +1,7 @@ | ||
name: metabat_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- metabat2 == 2.15 | ||
- metabat2 == 2.15 |
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,12 +1,12 @@ | ||
name: python_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python == 3.7 | ||
- numpy | ||
- pandas | ||
- seaborn | ||
- matplotlib | ||
- biopython == 1.77 | ||
- python == 3.7 | ||
- numpy | ||
- pandas | ||
- seaborn | ||
- matplotlib | ||
- biopython == 1.77 |
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,8 +1,8 @@ | ||
name: samtools_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- samtools == 1.10 | ||
- minimap2 == 2.17 | ||
- samtools == 1.10 | ||
- minimap2 == 2.17 |
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,6 +1,8 @@ | ||
name: semibin_env | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- semibin == 1.5.0 | ||
- semibin = 1.5 | ||
# - semibin=1.5.0=pyh7cba7a3_0 |
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 was deleted.
Oops, something went wrong.