Mercurial > repos > galaxyp > maxquant
comparison test_mqparam.py @ 8:55f8e3f91e0b draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant commit 5e4f8567c0145de8c6f9344fe4ee4c3bf2a81e59"
author | galaxyp |
---|---|
date | Fri, 19 Feb 2021 21:23:33 +0000 |
parents | 009693badefc |
children |
comparison
equal
deleted
inserted
replaced
7:710a80ad14f5 | 8:55f8e3f91e0b |
---|---|
1 """Tests for mqparam class. If testing a new MaxQuant version, | 1 """Tests for mqparam class. If testing a new MaxQuant version, |
2 create a new parameter file using '<MAXQUANT_CMD> -c ./mqpar.xml' | 2 create a new parameter file using '<MAXQUANT_CMD> -c ./mqpar.xml' |
3 """ | 3 """ |
4 | 4 |
5 import xml.etree.ElementTree as ET | |
6 | |
5 import pytest | 7 import pytest |
6 import xml.etree.ElementTree as ET | |
7 from mqparam import MQParam, ParamGroup | 8 from mqparam import MQParam, ParamGroup |
8 | 9 |
9 TEMPLATE_PATH = './test-data/template.xml' | 10 TEMPLATE_PATH = './test-data/template.xml' |
10 | 11 |
11 | 12 |