-
Notifications
You must be signed in to change notification settings - Fork 10
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
6822c6c
commit 3cfa019
Showing
6 changed files
with
58 additions
and
7 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 |
---|---|---|
|
@@ -23,4 +23,5 @@ __pycache__ | |
*.check | ||
*.hmm | ||
*.rbh | ||
LG_db/*/ | ||
LG_db/*/ | ||
._* |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
CORES= 1 | ||
all: BCnS_ALG UnicellLG UnicellLGOrthofinder | ||
|
||
BCnS_ALG: LG_db/BCnS_LGs.tar.gz | ||
cd LG_db; \ | ||
tar --skip-old-files -xzvf BCnS_LGs.tar.gz; \ | ||
cd BCnS_LGs; \ | ||
snakemake --cores $(CORES) | ||
|
||
UnicellLG: LG_db/UnicellMetazoanLgs.tar.gz | ||
cd LG_db; \ | ||
tar --skip-old-files -xzvf UnicellMetazoanLgs.tar.gz; \ | ||
cd UnicellMetazoanLgs; \ | ||
snakemake --cores $(CORES) | ||
|
||
UnicellLGOrthofinder: LG_db/UnicellMetazoanLgsOrthofinder.tar.gz | ||
cd LG_db; \ | ||
tar --skip-old-files -xzvf UnicellMetazoanLgsOrthofinder.tar.gz; \ | ||
cd UnicellMetazoanLgsOrthofinder; \ | ||
snakemake --cores $(CORES) | ||
|
||
CLG_v1.0: LG_db/CLG_v1.0.tar.gz | ||
cd LG_db; \ | ||
tar --skip-old-files -xzvf CLG_v1.0.tar.gz; \ | ||
cd CLG_v1.0; \ | ||
snakemake --cores $(CORES) |
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,4 +1,6 @@ | ||
# In this document we will log changes to include with release notes. | ||
- v0.3.1 - Published on ?? (Pending) | ||
- Removed redundant files from the package (specifically the genome_rearrangement_simulation2 and 3 files.) | ||
- Added the Simakov et al 2020 CLGs to the software. | ||
- Added another makefile that has a variable number of cores. | ||
- v0.3.0 - Published on Feb 25th, 2023 |
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