Info |
---|
Status (02 May 2022)
|
Table of Contents |
---|
Demultiplexing and splitting
...
Code Block |
---|
mkdir -p /gscratch/grandol1/5ALANS6/rawdata cd /gscratch/grandol1/5ALANS6/rawdata unpigz --to-stdout /project/microbiome/data_queue/seq/5ALANS6/rawdata/5ALNovaSeq6_Redo_S1_R1_001.fastqpool_1.fq.gz | split -l 16000000 -d --suffix-length=3 --additional-suffix=.fastq - 5ALANS6_R1_ ; unpigz --to-stdout /project/microbiome/data_queue/seq/5ALANS6/rawdata/5ALNovaSeq6_Redo_S1_R2_001.fastqpool_2.fq.gz | split -l 16000000 -d --suffix-length=3 --additional-suffix=.fastq - 5ALANS6_R2_ |
making 94 R1 files and 94 R2 files, with structured names (e.g., for the R1 set):
/gscratch/grandol1/5ALA/rawdata/5ALANS6_R1_000.fastq
/gscratch/grandol1/5ALA/rawdata/5ALANS6_R1_001.fastq
etc.
Stalled here on 1-18-2023Stopped at above step on 1/31/23 2:41pm
run_parse_count_onSplitInput.pl
also writes to /gscratch
.
...
In a sequence library’s rawdata/
directory (e.g., /project/microbiome/data_queue/seq/5ALANS6/rawdata
) I made run_aggregate.sh
, to run aggregate_usearch_fastx_info.pl
with a slurm job. Summaries are written to summary_sample_fastq.csv
.
...
In /project/microbiome/data_queue/seq/5ALANS6/tfmergedreads
, we used run_slurm_mergereads.pl
to crawl the project folders and sample files (created in the splitting step above) to merge read pairs, and filter based on base quality. This script conforms to the steps in https://microcollaborative.atlassian.net/wiki/spaces/MICLAB/pages/1123778569/Bioinformatics+v3.0?focusedCommentId=1280377080#comment-1280377080, including trimming primers, and joining unmerged reads. This writes a new set of fasta files for each sample and project, rather than fastq, to be used in subsequent steps. These files are found in the 16S/
and ITS/
folders in tfmergedreads/
. For example, see contents of /project/microbiome/data/seq/NS5NS6/tfmergedreads/16S/
Within each of these directories are files for the trimmed, merged, and filtered reads, in subfolders trimmed/
, joined/
, and unmerged/
(the last one is used as a working directory, should be empty; unmerged reads are filtered and joined and put in joined/
if they can be joined; the joined directory can be empty, if all unmerged reads were coligos for example).
...
In /project/microbiome/data_queue/seq/NS5NS6/otu
, I ran run_slurm_mkotu.pl
, which I modified to also pick up the joined reads (in addition the merged reads).
...
In /project/microbiome/data_queue/seq/5ALANS6/coligoISD
, coligoIS
or /project/microbiome/data/seq/5ALA/coligoISD
, and /project/microbiome/data/seq/5ALANS6/coligoISD
, there are 16S
and ITS
directories for all projects. These contain a file named coligoISDtable.txt
with counts of the coligos and the ISD found in the trimmed forward reads, per sample. The file run_slurm_mkcoligoISDtable.pl
has the code that passes over all of the projects and uses vsearch
for making the table.
...