This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See the CHANGELOG.
- Loading branch information
Showing
17 changed files
with
262 additions
and
114 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -258,11 +258,12 @@ | |
[] | ||
(let [terra-ns (comp (partial str/join "/") (partial vector "wfl-dev")) | ||
workspace (terra-ns "CDC_Viral_Sequencing") | ||
source {:name "Terra DataRepo" | ||
:dataset "79fc88f5-dcf4-48b0-8c01-615dfbc1c63a" | ||
:table "flowcells" | ||
:column "last_modified_date" | ||
:snapshotReaders ["[email protected]"]} | ||
source {:name "Terra DataRepo" | ||
:dataset "79fc88f5-dcf4-48b0-8c01-615dfbc1c63a" | ||
:table "flowcells" | ||
:column "last_modified_date" | ||
:snapshotReaders ["[email protected]"] | ||
:pollingIntervalMinutes 1} | ||
executor {:name "Terra" | ||
:workspace workspace | ||
:methodConfiguration (terra-ns "sarscov2_illumina_full") | ||
|
@@ -428,11 +429,12 @@ | |
[{:email (env/getenv "WFL_TDR_SERVICE_ACCOUNT") | ||
:accessLevel "OWNER"}])] | ||
(fn [[dataset workspace]] | ||
(let [source {:name "Terra DataRepo" | ||
:dataset dataset | ||
:table "inputs" | ||
:column "ingested" | ||
:snapshotReaders ["[email protected]"]} | ||
(let [source {:name "Terra DataRepo" | ||
:dataset dataset | ||
:table "inputs" | ||
:column "ingested" | ||
:snapshotReaders ["[email protected]"] | ||
:pollingIntervalMinutes 1} | ||
executor {:name "Terra" | ||
:workspace workspace | ||
:methodConfiguration "warp-pipelines/IlluminaGenotypingArray" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.1" encoding="UTF-8" standalone="no"?> | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd | ||
http://www.liquibase.org/xml/ns/dbchangelog | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd"> | ||
<changeSet author="[email protected]" | ||
dbms="postgresql" | ||
id="20211110" | ||
logicalFilePath="20211110_AddPollingIntervalColumn.xml" | ||
runInTransaction="false"> | ||
<comment> | ||
We want to be able to allow each terra data repo source to be able to specify | ||
the rate at which they poll TDR for new rows to snapshot. The new column added | ||
to TerraDataRepoSource will allow us to keep track of what the interval is for | ||
each workload's source. | ||
</comment> | ||
<sql> | ||
ALTER TABLE TerraDataRepoSource | ||
ADD polling_interval_minutes INTEGER; | ||
</sql> | ||
</changeSet> | ||
</databaseChangeLog> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.