-
Couldn't load subscription status.
- Fork 79
Post Processing Merged BIOMs extended #2698
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
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
519834b
Post Processing Merged BIOMs extended
848f30d
Removed two print statements
9a0e8a9
Move worker.py to new test/support_files subdirectory.
47c34b7
Child-Process Environment Instantiation generalized
62922ef
Moved worker.py to new location
7477c46
Fixes so tests will execute correctly.
6e604f5
Mods to support needs of updated Deblur plugin
f2abd23
Working directory for post-processing changed
1a253b4
flake8
5bf7ac7
worker.py path adjusted to reflect cwd in Travis
9d849e9
Resolve spelling error
c0ba812
fragments renamed to archives
912ceef
flake8
4d2880a
Replaced *NIX-specific patch creation w/join()
6252c98
Merge branch 'dev' into post_processing
charles-cowart 4b1ee2c
Added analysis id to fp_archive.json
0dd79f9
Merge branch 'post_processing' of https://github.com/charles-cowart/q…
f61d37a
Modified test to address changes to parameters
d65103e
Removed unnecessary import
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,11 +1,11 @@ | ||
| -- October 6, 2018 | ||
| -- add addtl_processing_cmd column to record additional information required to merge some BIOMS. | ||
| -- add post_processing_cmd column to record additional information required to merge some BIOMS. | ||
|
|
||
| ALTER TABLE qiita.software_command ADD addtl_processing_cmd varchar; | ||
|
|
||
| COMMENT ON COLUMN qiita.software_command.addtl_processing_cmd IS 'Store information on additional processes to merge BIOMs, if any.'; | ||
| ALTER TABLE qiita.software_command ADD post_processing_cmd varchar; | ||
| COMMENT ON COLUMN qiita.software_command.post_processing_cmd IS 'Store information on additional post-processing steps for merged BIOMs, if any.'; | ||
|
|
||
| -- October 25, 2018 | ||
| -- add public_raw_download to study | ||
|
|
||
| ALTER TABLE qiita.study ADD public_raw_download bool default False; | ||
|
|
This file contains hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
| #!/usr/bin/env python | ||
| import sys | ||
|
|
||
| # sample worker process prints the version information for the environment | ||
| # it is running in. Useful for confirming Popen is spawning processes with | ||
| # in the correct Python environment. | ||
| sys.stdout.write("Worker running Python %s\n" % str(sys.version_info)) | ||
| sys.stdout.write(">>%s<<" % (sys.argv)) |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.