Skip to content

Commit 9802a01

Browse files
Merge pull request #3210 from antgonza/minor-changes-09.2022
minor changes after qiita-rc 09.2022
2 parents 85fe753 + ff29eaf commit 9802a01

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

qiita_db/support_files/patches/87.sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Aug 11, 2022
22
-- updating resource allocations to use slurm
3-
UPDATE qiita.processing_job_resource_allocation processing_job_resource_allocation SET allocation =
3+
UPDATE qiita.processing_job_resource_allocation SET allocation =
44
REPLACE(
55
REPLACE(
66
REPLACE(
@@ -13,4 +13,6 @@ REPLACE(
1313
'-l pmem=', '--mem-per-cpu '),
1414
'-l mem=', '--mem '),
1515
'-l walltime=', '--time '),
16-
'-p 1023', '--priority 1023');
16+
'-p 1023', '--qos=qiita_prio');
17+
18+
INSERT INTO qiita.filepath_type (filepath_type) VALUES ('bam');

qiita_db/test/test_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_filepath(self):
3636
self.assertEqual(get_count("qiita.filepath"), 23)
3737

3838
def test_filepath_type(self):
39-
self.assertEqual(get_count("qiita.filepath_type"), 24)
39+
self.assertEqual(get_count("qiita.filepath_type"), 25)
4040

4141
def test_study_prep_template(self):
4242
self.assertEqual(get_count("qiita.study_prep_template"), 2)

qiita_db/test/test_util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def test_get_filepath_types(self):
135135
'directory': 8, 'plain_text': 9, 'reference_seqs': 10,
136136
'reference_tax': 11, 'reference_tree': 12, 'log': 13,
137137
'sample_template': 14, 'prep_template': 15, 'qiime_map': 16,
138+
'bam': 17
138139
}
139140
with qdb.sql_connection.TRN:
140141
qdb.sql_connection.TRN.add("SELECT filepath_type,filepath_type_id "

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
'networkx', 'humanize', 'wtforms<3.0.0', 'nltk',
109109
'openpyxl', 'sphinx-bootstrap-theme', 'Sphinx<3.0',
110110
'gitpython', 'redbiom', 'pyzmq', 'sphinx_rtd_theme',
111-
'paramiko', 'seaborn', 'matplotlib', 'scipy<1.8',
111+
'paramiko<2.9', 'seaborn', 'matplotlib', 'scipy<1.8',
112112
'nose',
113113
'flake8', 'six', 'qiita-files @ https://github.com/'
114114
'qiita-spots/qiita-files/archive/master.zip', 'mock',

0 commit comments

Comments
 (0)