-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into TASK-6322
- Loading branch information
Showing
215 changed files
with
2,106 additions
and
2,196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright 2015-2024 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
opencga-app/src/main/java/org/opencb/opencga/app/cli/main/OpenCgaCompleter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
opencga-app/src/main/java/org/opencb/opencga/app/cli/main/OpencgaCliOptionsParser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...pp/src/main/java/org/opencb/opencga/app/migrations/v2/v2_0_3/catalog/java/Migration1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_0_3.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.exceptions.CatalogException; | ||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "recalculate_roles", description = "Recalculate roles from Family #1763", version = "2.0.3", date = 20210528, | ||
deprecatedSince = "3.0.0") | ||
public class Migration1 extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws CatalogException { | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
.../main/java/org/opencb/opencga/app/migrations/v2/v2_0_5/catalog/java/initialiseGroups.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_0_5.catalog.java; | ||
|
||
|
||
import org.opencb.opencga.catalog.exceptions.CatalogException; | ||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "initialise_groups", description = "Initialise userIds list from groups #1791", version = "2.0.5", date = 20210621, | ||
deprecatedSince = "3.0.0") | ||
public class initialiseGroups extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws CatalogException { | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...pencb/opencga/app/migrations/v2/v2_0_6/catalog/removeDeletedFileReferencesFromSample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_0_6.catalog; | ||
|
||
|
||
import org.opencb.opencga.catalog.exceptions.CatalogException; | ||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "remove_file_references_from_sample", description = "Remove deleted file references from samples #1815", version = "2.0.6", | ||
date = 20210901, deprecatedSince = "3.0.0") | ||
public class removeDeletedFileReferencesFromSample extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws CatalogException { | ||
} | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
...encga/app/migrations/v2/v2_12_0/catalog/AddAnnotationSetsInClinicalAnalysisMigration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_12_0.catalog; | ||
|
||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "add_annotation_sets_to_clinical_analysis" , | ||
description = "Add private annotation fields to ClinicalAnalysis documents #TASK-5198", | ||
version = "2.12.0", | ||
domain = Migration.MigrationDomain.CATALOG, | ||
language = Migration.MigrationLanguage.JAVA, | ||
date = 20231116, | ||
deprecatedSince = "3.0.0" | ||
) | ||
public class AddAnnotationSetsInClinicalAnalysisMigration extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...b/opencga/app/migrations/v2/v2_12_0/catalog/CompleteClinicalReportDataModelMigration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_12_0.catalog; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "complete_clinical_report_data_model" , | ||
description = "Complete Clinical Report data model #TASK-5198", | ||
version = "2.12.0", | ||
domain = Migration.MigrationDomain.CATALOG, | ||
language = Migration.MigrationLanguage.JAVA, | ||
date = 20231128, | ||
deprecatedSince = "3.0.0" | ||
) | ||
public class CompleteClinicalReportDataModelMigration extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...main/java/org/opencb/opencga/app/migrations/v2/v2_1_0/catalog/java/AddMissingIndexes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "add_missing_indexes", | ||
description = "Add missing indexes", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210928, | ||
deprecatedSince = "3.0.0") | ||
public class AddMissingIndexes extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
.../org/opencb/opencga/app/migrations/v2/v2_1_0/catalog/java/AddPanelsToInterpretations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "add_panels_to_interpretations", | ||
description = "Add panels to Interpretations #1802", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
date = 20210713, | ||
deprecatedSince = "3.0.0") | ||
public class AddPanelsToInterpretations extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...ain/java/org/opencb/opencga/app/migrations/v2/v2_1_0/catalog/java/CreateAuditIndexes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "create_audit_indexes", description = "Create Audit indexes", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210622, | ||
deprecatedSince = "3.0.0") | ||
public class CreateAuditIndexes extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
|
||
} | ||
|
18 changes: 18 additions & 0 deletions
18
...app/src/main/java/org/opencb/opencga/app/migrations/v2/v2_1_0/catalog/java/PanelLock.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "add_panel_lock", | ||
description = "Add new panelLock to ClinicalAnalysis #1802", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210713, | ||
deprecatedSince = "3.0.0") | ||
public class PanelLock extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...encb/opencga/app/migrations/v2/v2_1_0/catalog/java/RemoveRCVersionsFromMigrationRuns.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "remove_rc_version_from_migration_runs", | ||
description = "Remove RC versions from migration runs stored in catalog", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210723, | ||
deprecatedSince = "3.0.0") | ||
public class RemoveRCVersionsFromMigrationRuns extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
.../opencga/app/migrations/v2/v2_1_0/catalog/java/RenameDatastoreConfigurationToOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "rename_datastore_configuration_to_options", description = "Rename project.internal.datastores.variant.configuration to options", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210617, | ||
deprecatedSince = "3.0.0") | ||
public class RenameDatastoreConfigurationToOptions extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
...b/opencga/app/migrations/v2/v2_1_0/catalog/java/StudyClinicalConfigurationRelocation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.opencb.opencga.app.migrations.v2.v2_1_0.catalog.java; | ||
|
||
|
||
import org.opencb.opencga.catalog.migration.Migration; | ||
import org.opencb.opencga.catalog.migration.MigrationTool; | ||
|
||
@Migration(id = "move_study_clinical_config_to_internal", | ||
description = "Move Study ClinicalConfiguration to internal.configuration", version = "2.1.0", | ||
language = Migration.MigrationLanguage.JAVA, | ||
domain = Migration.MigrationDomain.CATALOG, | ||
patch = 1, | ||
date = 20210708, | ||
deprecatedSince = "3.0.0") | ||
public class StudyClinicalConfigurationRelocation extends MigrationTool { | ||
|
||
@Override | ||
protected void run() throws Exception { | ||
} | ||
} |
Oops, something went wrong.