org.opencb.cellbase.lib.download.Downloader Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015-2020 OpenCB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencb.cellbase.lib.download;
import org.opencb.biodata.formats.io.FileFormatException;
import org.opencb.cellbase.core.config.CellBaseConfiguration;
import org.opencb.cellbase.core.exception.CellBaseException;
import java.io.IOException;
import java.nio.file.Path;
import java.util.List;
public class Downloader {
private String species;
private String assembly;
private Path outputDirectory;
private CellBaseConfiguration configuration;
public Downloader(String species, String assembly, Path outputDirectory, CellBaseConfiguration configuration) {
this.species = species;
this.assembly = assembly;
this.outputDirectory = outputDirectory;
this.configuration = configuration;
}
public List downloadGenome() throws IOException, CellBaseException, InterruptedException {
GenomeDownloadManager manager = new GenomeDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadGene() throws IOException, CellBaseException, InterruptedException {
GeneDownloadManager manager = new GeneDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadRegulation() throws IOException, CellBaseException, InterruptedException,
NoSuchMethodException, FileFormatException {
RegulationDownloadManager manager = new RegulationDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadProtein() throws IOException, CellBaseException, InterruptedException {
ProteinDownloadManager manager = new ProteinDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadConservation() throws IOException, CellBaseException, InterruptedException {
GenomeDownloadManager manager = new GenomeDownloadManager(species, assembly, outputDirectory, configuration);
return manager.downloadConservation();
}
public List downloadVariation() throws IOException, CellBaseException, InterruptedException {
VariationDownloadManager manager = new VariationDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadClinicalVariants() throws IOException, CellBaseException, InterruptedException {
ClinicalDownloadManager manager = new ClinicalDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadRepeats() throws IOException, CellBaseException, InterruptedException {
GenomeDownloadManager manager = new GenomeDownloadManager(species, assembly, outputDirectory, configuration);
return manager.downloadRepeats();
}
public List downloadOntologies() throws IOException, CellBaseException, InterruptedException {
OntologyDownloadManager manager = new OntologyDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadCaddScores() throws IOException, CellBaseException, InterruptedException {
CaddDownloadManager manager = new CaddDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadPredictionScores() throws IOException, CellBaseException, InterruptedException {
MissenseScoresDownloadManager manager = new MissenseScoresDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadPubMed() throws IOException, CellBaseException, InterruptedException {
PubMedDownloadManager manager = new PubMedDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
public List downloadPharmKGB() throws IOException, CellBaseException, InterruptedException {
PharmGKBDownloadManager manager = new PharmGKBDownloadManager(species, assembly, outputDirectory, configuration);
return manager.download();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy