diff --git a/README.md b/README.md index 2d077bd2f1eac0e814e30ee1a337fab541f1a690..fd0b6243472147a79e44c59142e3c9b803c72f0d 100755 --- a/README.md +++ b/README.md @@ -149,8 +149,9 @@ Directory tree structure: [BSD 3-Clause](./LICENSE) -## Acknowledgments +## Contributors -[Anthony Bretaudeau](https://github.com/abretaud) - -[Matéo Boudet](https://github.com/mboudet) \ No newline at end of file +- [Matéo Boudet](https://github.com/mboudet) +- [Anthony Bretaudeau](https://github.com/abretaud) +- [Loraine Brillet-Guéguen](https://github.com/loraine-gueguen) +- [Arthur Le Bars](https://gitlab.com/Troubardours) \ No newline at end of file diff --git a/gga_get_data.py b/gga_get_data.py index 872d5c3a21d41eb6af1c9a547a262f806699525d..1c14ed3a3e674fc773dbc81ef6bc4bd583a4208e 100755 --- a/gga_get_data.py +++ b/gga_get_data.py @@ -1,22 +1,13 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -import bioblend import argparse import os -import subprocess import logging import sys -import fnmatch import time -import json -import re -import stat import shutil -from bioblend.galaxy.objects import GalaxyInstance -from bioblend import galaxy - import utilities import speciesData @@ -36,24 +27,6 @@ class GetData(speciesData.SpeciesData): """ - def goto_species_dir(self): - """ - Go to the species directory (starting from the main dir) - - :return: - """ - - os.chdir(self.main_dir) - species_dir = os.path.join(self.main_dir, self.genus_species) + "/" - try: - os.chdir(species_dir) - except OSError: - logging.critical("Cannot access %s" % species_dir) - sys.exit(0) - return 1 - - - def make_directory_tree(self): """ Generate the directory tree for an organism diff --git a/gga_init.py b/gga_init.py index 673df13b3e83a6540410ddcfebcf303031e6d36c..8ec255f81fe9a4a69e7b48808a20d534ecdfafa2 100755 --- a/gga_init.py +++ b/gga_init.py @@ -11,7 +11,7 @@ import yaml import shutil from pathlib import Path -from jinja2 import Template, Environment, FileSystemLoader +from jinja2 import Environment, FileSystemLoader import utilities import speciesData diff --git a/speciesData.py b/speciesData.py index f2b97026d4d929a39e21c79b31058f498f253622..b6af88556137eca8e35bceb9cfc13124205c2013 100755 --- a/speciesData.py +++ b/speciesData.py @@ -4,6 +4,7 @@ import os import sys import utilities +import logging from _datetime import datetime @@ -15,6 +16,22 @@ class SpeciesData: """ + def goto_species_dir(self): + """ + Go to the species directory (starting from the main dir) + + :return: + """ + + os.chdir(self.main_dir) + species_dir = os.path.join(self.main_dir, self.genus_species) + "/" + try: + os.chdir(species_dir) + except OSError: + logging.critical("Cannot access %s" % species_dir) + sys.exit(0) + return 1 + def clean_string(self, string): if not string is None and string != "": clean_string = string.replace(" ", "_").replace("-", "_").replace("(", "").replace(")", "").replace("'", "").strip()