Skip to content

Updates for latest data source release. #5614

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class FuncotatorDataSourceDownloader extends CommandLineProgram {
//==================================================================================================================
// Private Static Members:

private static String BASE_URL = "gs://broad-public-datasets/funcotator/funcotator_dataSources.v1.4.20180829";
private static String BASE_URL = "gs://broad-public-datasets/funcotator/funcotator_dataSources.v1.6.20190124";

private static String GERMLINE_GCLOUD_DATASOURCES_BASEURL = BASE_URL + "g";
@VisibleForTesting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ private DataSourceUtils() {}
@VisibleForTesting
static final int MIN_MAJOR_VERSION_NUMBER = 1;
@VisibleForTesting
static final int MIN_MINOR_VERSION_NUMBER = 4;
static final int MIN_MINOR_VERSION_NUMBER = 6;
@VisibleForTesting
static final int MIN_YEAR_RELEASED = 2018;
static final int MIN_YEAR_RELEASED = 2019;
@VisibleForTesting
static final int MIN_MONTH_RELEASED = 8;
static final int MIN_MONTH_RELEASED = 1;
@VisibleForTesting
static final int MIN_DAY_RELEASED = 29;
static final int MIN_DAY_RELEASED = 24;

//==================================================================================================================
// Public Static Members:
Expand Down