From 91c3500dc44821fd8503dc3b4dfe10a85479620f Mon Sep 17 00:00:00 2001
From: Loraine Gueguen <loraine.gueguen@sb-roscoff.fr>
Date: Tue, 11 May 2021 13:43:28 +0200
Subject: [PATCH] Remove unused imports. Update Readme. Factorize
 goto_species_dir()

---
 README.md       |  9 +++++----
 gga_get_data.py | 27 ---------------------------
 gga_init.py     |  2 +-
 speciesData.py  | 17 +++++++++++++++++
 4 files changed, 23 insertions(+), 32 deletions(-)

diff --git a/README.md b/README.md
index 2d077bd..fd0b624 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 872d5c3..1c14ed3 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 673df13..8ec255f 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 f2b9702..b6af885 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()
-- 
GitLab