Skip to content

fix job submission for admin jobs #3332

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 2 commits into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 1 deletion qiita_db/processing_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ def resource_allocation_info(self):
jtype = 'RELEASE_VALIDATORS_RESOURCE_PARAM'
tmp = ProcessingJob(self.parameters.values['job'])
name = tmp.parameters.command.name
analysis = tmp.input_artifacts[0].analysis
if tmp.input_artifacts:
analysis = tmp.input_artifacts[0].analysis
elif self.command.name == 'Validate':
jtype = 'VALIDATOR'
vals = self.parameters.values
Expand Down
11 changes: 11 additions & 0 deletions qiita_pet/support_files/doc/source/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,17 @@ Now, if you are wondering about the possible "Processing notes", here are their
associated with a samples is an index read file.


Are you planning a workshop or class?
-------------------------------------------------------------------

We encourage users to use Qiita for their classes and/or workshops and to facilitate processing
we urge users to request a special reservation in the system. A reservation should help your
and your participant jobs to move quicker in the system. If you are interested, please send us
an email to qiita.help@gmail.com and add the name of your workshop/course, the number of
participants, the expected days this will happen. Note that reservations are only available for
analysis and not for sequencing processing, and that the reservation can be added/edited during
the creation of the analysis or at any point within each individual analysis page.

How to cite Qiita?
------------------

Expand Down