Skip to content
Snippets Groups Projects
Commit 481eae5e authored by nfontrod's avatar nfontrod
Browse files

src/db_utils/projects_metadata/get_fill_metadata.py: modification in...

src/db_utils/projects_metadata/get_fill_metadata.py: modification in launch_pmagicGEO_script function: we call subprocess.check_call instead of subprocess.check_output
parent c6ae6f8a
No related branches found
No related tags found
No related merge requests found
......@@ -24,9 +24,9 @@ def launch_pmagicGEO_script() -> None:
that we want to study.
"""
subprocess.check_output(f"PmagicGEO.pl -i {Config.geo_id_file} "
f"-p {Config.output} " f"-o {Config.outfile}",
shell=True, stderr=subprocess.STDOUT)
subprocess.check_call(f"PmagicGEO.pl -i {Config.geo_id_file} "
f"-p {Config.output} " f"-o {Config.outfile}",
shell=True, stderr=subprocess.STDOUT)
def load_metadata() -> pd.DataFrame:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment