-
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.
Remove cromwell-metadata docker (#105)
* Remove cromwell-metadata docker Use the default application credentials of the VM, which are the same credentials provided in workflow options, when requesting metadata from cromwell instead of storing the JSON key in a private docker image. * Use PAPIv2 * Remove cromwell-tools requirement * Remove use_caas parameter The parameter was previously being used to determine which credentials to use when sending an API request to Cromwell to retrieve analysis workflow metadata. Now the submit wdl will only run in caas so the parameter is no longer needed. * Update documentation * Update pipeline-tools docker image version
- Loading branch information
1 parent
03f681d
commit a2ab84a
Showing
10 changed files
with
41 additions
and
98 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
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,6 @@ | ||
requests==2.20.0 | ||
google-auth>=1.6.1,<2 | ||
google-cloud-storage==1.8.0 | ||
tenacity==4.10.0 | ||
PyJWT==1.6.4 | ||
git+git://github.com/broadinstitute/[email protected] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
license='BSD 3-clause "New" or "Revised" License', | ||
packages=['pipeline_tools'], | ||
install_requires=[ | ||
'cromwell-tools', | ||
'google-auth>=1.6.1,<2', | ||
'google-cloud-storage>=1.8.0,<2', | ||
'hca>=4.5.0,<5', | ||
'hca-metadata-api', | ||
|
@@ -39,7 +39,6 @@ | |
}, | ||
# FIXME: DEPRECATION: Dependency Links processing has been deprecated and will be removed in a future release. | ||
dependency_links=[ | ||
'git+git://github.com/broadinstitute/[email protected]#egg=cromwell-tools-1.0.1', | ||
# FIXME: install hca-metadata-api from PyPI once it is available (shortly) | ||
# Pin to a specific commit of the hca-metadata-api so we won't be broken by changes to that repo before it's | ||
# available on PyPI | ||
|