I'm pretty new to bioinformatics and I'm trying to decompress a fastq.gz file to convert it into .bam (I'm trying to later analyze this transcriptomic data with DESeq2). I'm in the very beginning of decompressing the file using Jupyter notebooks and cannot make it- Here's the command line I'm using and the error:
In [2] gzip -d /Users/mfp/RNAdata/transcriptome-mcgirr/SRR11476490/CAE4_S34_R1_001.fastq.gz
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Input In [2], in <cell line: 1>()
----> 1 gzip -d /Users/mfp/RNAdata/transcriptome-mcgirr/SRR11476490/CAE4_S34_R1_001.fastq.gz
NameError: name 'd' is not defined
Any idea on what I am doing wrong? (Honestly, it can be everything).