Skip to content

Commit 52eacae

Browse files
committed
updated readme, version bump
1 parent b49ff66 commit 52eacae

File tree

10 files changed

+15
-53
lines changed

10 files changed

+15
-53
lines changed

.github/workflows/github_build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ jobs:
4141
pwd
4242
pip install .
4343
path=$(fdog.setup -d ./ --getSourcepath); for i in $(less $path/data/dependencies.txt); do sudo apt-get install -y -qq $i; done
44-
path=$(fdog.setup -d ./ --getSourcepath); ls $path/data/
45-
echo "#########################################"
44+
echo "######### curent_dir #########"
4645
pwd
4746
ls
48-
echo "#########################################"
47+
echo "######### source_dir/data/ #########"
48+
path=$(fdog.setup -d ./ --getSourcepath); ls $path/data/
49+
echo "######### TEST FDOG FUNCTIONS #########"
4950
echo "TEST fdog.setup"
5051
fdog.setup -d /home/runner/work/fDOG/fDOG/dt --woFAS
5152
echo "TEST fdog.checkData"

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ dmypy.json
138138
#Hannah
139139
/fdog/data/core_orthologs/
140140
/fdog/data/assembly_dir/
141-
/fdog/fdog_goes_assembly/tmp/
141+
/fdog/fdog_goes_assembly/tmp/
142142
taxdump*
143143
.DS_Store
144+
.idea/

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/fDOG-Assembly.iml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
[![PyPI version](https://badge.fury.io/py/fdog.svg)](https://pypi.org/project/fdog/)
44
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
55
![Github Build](https://github.com/BIONF/fDOG/workflows/build/badge.svg)
6+
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17250794.svg)](https://doi.org/10.5281/zenodo.17250794)
7+
68

7-
# Poster fDOG - Assembly
8-
https://github.com/BIONF/fDOG/blob/gh-pages/www/Poster_fDOG_Assembly.pdf
99
# Table of Contents
1010
* [How to install](#how-to-install)
1111
* [Install the fDOG package](#install-the-fdog-package)
@@ -14,6 +14,7 @@ https://github.com/BIONF/fDOG/blob/gh-pages/www/Poster_fDOG_Assembly.pdf
1414
* [fDOG data set](#fdog-data-set)
1515
* [Adding a new gene set into fDOG](#adding-a-new-gene-set-into-fdog)
1616
* [Adding a list of gene sets into fDOG](#adding-a-list-of-gene-sets-into-fdog)
17+
* [fDOG-Assembly](#fdog-assembly)
1718
* [Bugs](#bugs)
1819
* [How to cite](#how-to-cite)
1920
* [Contributors](#contributors)
@@ -110,6 +111,10 @@ The header line (started with #) is a Must. The values of the last 2 columns (ab
110111

111112
_**NOTE:** After adding new taxa into *fdog*, you should [check for the validity of the new data](https://github.com/BIONF/fDOG/wiki/Check-data-validity) before running fdog._
112113

114+
# fDOG-Assembly
115+
116+
*fDOG-Assembly* is an extension of *fDog* that enables searching for orthologs directly within unannotated genome assemblies. For more details about *fDOG-Assembly*, please refer to our [wiki page](https://github.com/BIONF/fDOG/wiki/fDOG-Assembly).
117+
113118
# Bugs
114119
Any bug reports or comments, suggestions are highly appreciated. Please [open an issue on GitHub](https://github.com/BIONF/fDOG/issues/new) or be in touch via email.
115120

@@ -119,6 +124,7 @@ Tran V, Langschied F, Muelbaier H, Dosch J, Arthen F, Balint M, Ebersberger I. 2
119124
# Contributors
120125
- [Ingo Ebersberger](https://github.com/ebersber)
121126
- [Vinh Tran](https://github.com/trvinh)
127+
- [Hannah Muelbaier](https://github.com/HannahBioI)
122128
- [Holger Bergmann](https://github.com/holgerbgm)
123129

124130
# Contact

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="fdog",
29-
version="1.0.0",
29+
version="1.1.0",
3030
python_requires='>=3.12.0',
3131
description="Feature-aware Directed OrtholoG search tool",
3232
long_description=long_description,

0 commit comments

Comments
 (0)