Skip to content

Remove old job code #2045

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
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
931e566
New DB structure
josenavas Jan 9, 2017
a2b883e
Adding python patch
josenavas Jan 9, 2017
e737f64
Adding a biom so we can actually execute the patch
josenavas Jan 9, 2017
6bc0303
Fixing the patch to correctly transfer the information from the old s…
josenavas Jan 12, 2017
331012d
Fixing patch
josenavas Jan 12, 2017
eabe25d
Fixing patch and a few other bits to make the patch run successfully
josenavas Jan 12, 2017
0c40bc0
These files are no longer needed
josenavas Jan 12, 2017
602acc3
Removing unused code
josenavas Jan 12, 2017
ad4deea
Droping analysis status table
josenavas Jan 12, 2017
aa3e96f
Linking the analysis with all the artifacts
josenavas Jan 12, 2017
d222e08
Fixing typo
josenavas Jan 12, 2017
14be3b0
Merge branch 'analysis-refactor-db' into analysis-refactor-fix-analysis
josenavas Jan 12, 2017
39f6beb
Fixing HTML and dbschema files
josenavas Jan 12, 2017
8c2be56
Merge branch 'analysis-refactor-db' into analysis-refactor-fix-analysis
josenavas Jan 12, 2017
4dd357c
Adding analyisis jobs
josenavas Jan 13, 2017
209e838
Merge branch 'analysis-refactor-db' into analysis-refactor-fix-analysis
josenavas Jan 13, 2017
b24833d
Extending the artifact to work with the analysis
josenavas Jan 13, 2017
8b7f222
Allowing multiomics datatype
josenavas Jan 13, 2017
b381993
Adding private_job_submitter and modifying proc job handler to use it
josenavas Jan 13, 2017
ab65fa2
Adding logging column to the analysis
josenavas Jan 13, 2017
40656f2
Merge branch 'analysis-refactor-db' into analysis-refactor-fix-analysis
josenavas Jan 13, 2017
c4c8420
Adding datatype to the analysis-processing job table
josenavas Jan 15, 2017
0cd9f27
Adding REST endpoint to access the analysis metadata
josenavas Jan 15, 2017
8207513
Adding private jobs to plugin
josenavas Jan 15, 2017
f307cd4
Fixing typo
josenavas Jan 15, 2017
78c8095
Fixing analysis
josenavas Jan 16, 2017
b3936c8
Fixing the processing jobs complete
josenavas Jan 16, 2017
19c3f7d
Removing the old job code
josenavas Jan 16, 2017
055b53e
Oops removed the wrong file
josenavas Jan 16, 2017
43eb1ed
Addressing @antgonza's comments
josenavas Jan 16, 2017
d016833
Taking into account non-phylogenetic metrics in beta diversity
josenavas Jan 30, 2017
8d1f0c2
Merge branch 'analysis-refactor-fix-analysis' of github.com:josenavas…
josenavas Jan 30, 2017
894379c
Fixing merge conflicts
josenavas Jan 30, 2017
a80c0ac
Addressing @antgonza's comments
josenavas Feb 1, 2017
5d63afa
Merge branch 'analysis-refactor-fix-analysis' into analysis-refactor-…
josenavas Feb 1, 2017
6c22e8d
Fixing merge conflicts
josenavas Feb 2, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions qiita_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import environment_manager
import exceptions
import investigation
import job
import logger
import meta_util
import ontology
Expand All @@ -32,7 +31,7 @@
__version__ = "0.2.0-dev"

__all__ = ["analysis", "artifact", "base", "commands", "environment_manager",
"exceptions", "investigation", "job", "logger", "meta_util",
"exceptions", "investigation", "logger", "meta_util",
"ontology", "portal", "reference", "search",
"software", "sql_connection", "study", "user", "util",
"metadata_template", "processing_job", "private"]
Loading