Skip to content

Commit 083cbe9

Browse files
Add short-read fastqc MetaworkflowRun (#38)
* Add short-read fastqc * Bump version
1 parent af60e55 commit 083cbe9

File tree

4 files changed

+45
-6
lines changed

4 files changed

+45
-6
lines changed

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Change Log
44
==========
55

6+
3.6.2
7+
=====
8+
* Add short_reads_FASTQ_quality_metrics MetaWorkflowRun
9+
* Rename short read FASTQ MetaWorkflowRun specific for Illumina
10+
11+
612
3.6.1
713
=====
814
* Use only input files with status `uploaded` when creating MetaWorkflowRuns. (Ignore `retracted` files)

magma_smaht/commands/create_meta_workflow_run.py

+22-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
mwfr_bamqc_short_read,
1111
mwfr_ubam_qc_long_read,
1212
mwfr_ultra_long_bamqc,
13-
mwfr_long_read_bamqc
13+
mwfr_long_read_bamqc,
14+
mwfr_short_read_fastqc
1415
)
1516
from magma_smaht.utils import get_auth_key
1617

@@ -113,12 +114,30 @@ def align_ont(fileset_accession, auth_env):
113114
type=str,
114115
help="Name of environment in smaht-keys file",
115116
)
116-
def qc_short_read_fastq(fileset_accession, auth_env):
117-
"""QC MWFR for short-read FASTQs"""
117+
def qc_short_read_fastq_illumina(fileset_accession, auth_env):
118+
"""QC MWFR for paired short-read Illumina FASTQs"""
118119
smaht_key = get_auth_key(auth_env)
119120
mwfr_fastqc(fileset_accession, smaht_key)
120121

121122

123+
@cli.command()
124+
@click.help_option("--help", "-h")
125+
@click.option(
126+
"-f", "--file-accession", required=True, type=str, help="File accession"
127+
)
128+
@click.option(
129+
"-e",
130+
"--auth-env",
131+
required=True,
132+
type=str,
133+
help="Name of environment in smaht-keys file",
134+
)
135+
def qc_short_read_fastq(file_accession, auth_env):
136+
"""QC MWFR for short-read FASTQs"""
137+
smaht_key = get_auth_key(auth_env)
138+
mwfr_short_read_fastqc(file_accession, smaht_key)
139+
140+
122141
@cli.command()
123142
@click.help_option("--help", "-h")
124143
@click.option(

magma_smaht/create_metawfr.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
MWF_NAME_HIC = "Hi-C_alignment_GRCh38"
3636
MWF_NAME_FASTQC = "Illumina_FASTQ_quality_metrics"
3737
MWF_NAME_FASTQ_LONG_READ = "long_reads_FASTQ_quality_metrics"
38+
MWF_NAME_FASTQ_SHORT_READ = "short_reads_FASTQ_quality_metrics"
3839
MWF_NAME_CRAM_TO_FASTQ_PAIRED_END = "cram_to_fastq_paired-end"
3940
MWF_NAME_BAMQC_SHORT_READ = "paired-end_short_reads_BAM_quality_metrics_GRCh38"
4041
MWF_NAME_ULTRA_LONG_BAMQC = "ultra-long_reads_BAM_quality_metrics_GRCh38"
@@ -277,8 +278,8 @@ def mwfr_ubam_qc_long_read(fileset_accession, smaht_key):
277278
for dim, bam in enumerate(bams):
278279
files_input.append({"file": bam[UUID], "dimension": f"{dim}"})
279280

280-
mwfr_input = [get_mwfr_file_input_arg(INPUT_FILES, files_input)]
281-
create_and_post_mwfr(mwf[UUID], file_set, INPUT_FILES, mwfr_input, smaht_key)
281+
mwfr_input = [get_mwfr_file_input_arg(INPUT_FILES_BAM, files_input)]
282+
create_and_post_mwfr(mwf[UUID], file_set, INPUT_FILES_BAM, mwfr_input, smaht_key)
282283

283284

284285
def mwfr_bamqc_short_read(file_accession, smaht_key):
@@ -320,6 +321,19 @@ def mwfr_long_read_bamqc(file_accession, smaht_key):
320321
create_and_post_mwfr(mwf["uuid"], None, INPUT_FILES_BAM, mwfr_input, smaht_key)
321322

322323

324+
def mwfr_short_read_fastqc(file_accession, smaht_key):
325+
mwf = get_latest_mwf(MWF_NAME_FASTQ_SHORT_READ, smaht_key)
326+
print(f"Using MetaWorkflow {mwf[ACCESSION]} ({mwf[ALIASES][0]})")
327+
fastq_meta = get_metadata(file_accession, smaht_key)
328+
fastq = [{"file": fastq_meta[UUID], "dimension": "0"}]
329+
330+
mwfr_input = [
331+
get_mwfr_file_input_arg(INPUT_FILES_FASTQ_GZ, fastq),
332+
]
333+
334+
create_and_post_mwfr(mwf["uuid"], None, INPUT_FILES_FASTQ_GZ, mwfr_input, smaht_key)
335+
336+
323337
################################################
324338
# Helper functions
325339
################################################

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "magma-suite"
3-
version = "3.6.1"
3+
version = "3.6.2"
44
description = "Collection of tools to manage meta-workflows automation."
55
authors = ["Michele Berselli <[email protected]>", "Doug Rioux", "Soo Lee", "CGAP team"]
66
license = "MIT"

0 commit comments

Comments
 (0)