Skip to content
Snippets Groups Projects

Release_2.0 next

Merged Loraine Gueguen requested to merge release_2.0 into dev
Files
2
+ 8
12
@@ -88,18 +88,14 @@ class GetData(speciesData.SpeciesData):
organism_annotation_dir = os.path.abspath("./src_data/annotation/{0}/OGS{1}".format(self.species_folder_name, self.ogs_version))
organism_genome_dir = os.path.abspath("./src_data/genome/{0}/v{1}".format(self.species_folder_name, self.genome_version))
genome_datasets = [constants.ORG_PARAM_DATA_GENOME_PATH]
annotation_datasets = [constants.ORG_PARAM_DATA_GFF_PATH,
constants.ORG_PARAM_DATA_TRANSCRIPTS_PATH,
constants.ORG_PARAM_DATA_PROTEINS_PATH,
constants.ORG_PARAM_DATA_INTERPRO_PATH,
constants.ORG_PARAM_DATA_ORTHOFINDER_PATH,
constants.ORG_PARAM_DATA_BLASTP_PATH,
constants.ORG_PARAM_DATA_BLASTX_PATH]
# Where to store blast results?
# search_excluded_datasets = ["interpro_path", "orthofinder_path", "blastp_path", "blastx_path"]
# These datasets will not be searched if missing in the input file
genome_datasets = {constants.ORG_PARAM_DATA_GENOME_PATH: self.genome_path}
annotation_datasets = {constants.ORG_PARAM_DATA_GFF_PATH: self.gff_path,
constants.ORG_PARAM_DATA_TRANSCRIPTS_PATH: self.transcripts_path,
constants.ORG_PARAM_DATA_PROTEINS_PATH: self.proteins_path,
constants.ORG_PARAM_DATA_INTERPRO_PATH: self.interpro_path,
constants.ORG_PARAM_DATA_ORTHOFINDER_PATH: self.orthofinder_path,
constants.ORG_PARAM_DATA_BLASTP_PATH: self.blastp_path,
constants.ORG_PARAM_DATA_BLASTX_PATH: self.blastx_path}
# Copy datasets in the organism src_data dir tree correct folder
for k, v in genome_datasets.items():
Loading