-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize Cromwell timestamps to follow analysis JSON schema (#117)
* Standardize cromwell datetime format Because the format of Cromwell timestamps are inconsistent, re-format them to follow the JSON date-time format as defined in the analysis process schema. * Add tests for formatting timestamps * Update docker images for testing * Update requirements * Update pipeline-tools version
- Loading branch information
1 parent
a2ab84a
commit 5a09501
Showing
8 changed files
with
49 additions
and
13 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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
requests==2.20.0 | ||
arrow>=0.12.1 | ||
requests>=2.20.0,<3 | ||
google-auth>=1.6.1,<2 | ||
google-cloud-storage==1.8.0 | ||
google-cloud-storage>=1.10.0,<2 | ||
tenacity==4.10.0 | ||
PyJWT==1.6.4 | ||
git+git://github.com/HumanCellAtlas/metadata-api@release/1.0b4#egg=hca-metadata-api[dss] |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
requests-mock==1.5.2 | ||
backports.tempfile==1.0 | ||
mock>=2.0.0,<3 | ||
pytest==3.6.3 | ||
requests-mock>=1.5.2,<2 | ||
tenacity==4.10.0 | ||
backports.tempfile==1.0 |