-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9690f10
commit 5af4a56
Showing
27 changed files
with
20,138 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# I used example reads provided from MintMAP v2 to create random susbets | ||
# https://cm.jefferson.edu/mintmap/ | ||
# https://cm.jefferson.edu/?smd_process_download=1&download_id=8044 | ||
|
||
for i in {1..5}; | ||
do | ||
sample="s"$i".fastq.gz"; | ||
echo "seqtk sample -s"$i" MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > $sample"; | ||
done | ||
|
||
seqtk sample -s1 MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > s1.fastq.gz | ||
seqtk sample -s2 MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > s2.fastq.gz | ||
seqtk sample -s3 MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > s3.fastq.gz | ||
seqtk sample -s4 MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > s4.fastq.gz | ||
seqtk sample -s5 MINTmap-v2.0-alpha/ExampleRun/exampleInput.trimmed.fastq.gz 20000 | gzip > s5.fastq.gz | ||
|
||
# Use random seed each time to create different susbsets | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
echo "`date` ... Starting ..." | ||
echo "" | ||
|
||
mkdir logs | ||
|
||
########################################## | ||
## test single end | ||
########################################## | ||
echo "# ------------------------------ #" | ||
echo "XICRA prep -i ./subset_SE/ -o XICRA_analysis --single_end" | ||
echo "..." | ||
echo "" | ||
XICRA prep -i ./subset_SE/ -o XICRA_analysis --single_end | tee logs/XICRA_analysis.prep.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA QC -i XICRA_analysis --single_end --threads 4" | ||
echo "..." | ||
XICRA QC -i XICRA_analysis --single_end --threads 4 | tee logs/XICRA_analysis.qc.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA trim -i XICRA_analysis --single_end --threads 4 --adapters_a TGGAATTCTCGGGTGCCAAGG" | ||
echo "..." | ||
XICRA trim -i XICRA_analysis --single_end --threads 4 --adapters_a TGGAATTCTCGGGTGCCAAGG | tee logs/XICRA_analysis.trim.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA miRNA -i XICRA_analysis --single_end --threads 4 --software miraligner" | ||
echo "..." | ||
XICRA miRNA -i XICRA_analysis --single_end --threads 4 --software miraligner | tee logs/XICRA_analysis.miRNA.log | ||
echo "" | ||
echo "# ------------------------------ #" | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "`date` ... Single End Test finished ..." | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "" | ||
########################################## | ||
|
||
########################################## | ||
## test paired-end | ||
########################################## | ||
|
||
echo "`date` ... Starting PE test..." | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA prep -i ./subset_PE/ -o XICRA_analysis_PE" | ||
echo "..." | ||
XICRA prep -i ./subset_PE/ -o XICRA_analysis_PE | tee logs/XICRA_analysis_PE.prep.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA QC -i XICRA_analysis_PE --threads 4" | ||
echo "..." | ||
XICRA QC -i XICRA_analysis_PE --threads 4 | tee logs/XICRA_analysis_PE.qc.log | ||
echo "" | ||
|
||
# ATTENTION: NO need to trim these reads as these are simulated reads | ||
echo "# ------------------------------ #" | ||
echo "XICRA join -i XICRA_analysis_PE --threads 4 --noTrim" | ||
echo "..." | ||
XICRA join -i XICRA_analysis_PE --threads 4 --noTrim | tee logs/XICRA_analysis_PE.join.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA miRNA -i XICRA_analysis_PE --threads 4 --software miraligner" | ||
echo "..." | ||
XICRA miRNA -i XICRA_analysis_PE --threads 4 --software miraligner | tee logs/XICRA_analysis_PE.miRNA.log | ||
echo "" | ||
|
||
echo "" | ||
echo "`date` ... Paired End Test finished ..." | ||
echo "" | ||
echo "# ------------------------------ #" | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "" | ||
########################################## | ||
|
||
########################################## | ||
## test tRNA analysis | ||
########################################## | ||
echo "" | ||
echo "# ------------------------------ #" | ||
echo "XICRA prep -i ./subset_tRNA/ -o XICRA_analysis_tRNA --single_end" | ||
echo "..." | ||
echo "" | ||
XICRA prep -i ./subset_tRNA/ -o XICRA_analysis_tRNA --single_end | tee logs/XICRA_analysis_tRNA.prep.log | ||
echo "" | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA QC -i XICRA_analysis_tRNA --single_end --threads 4" | ||
echo "..." | ||
XICRA QC -i XICRA_analysis_tRNA --single_end --threads 4 | tee logs/XICRA_analysis_tRNA.qc.log | ||
echo "" | ||
|
||
# ATTENTION: NO need to trim these reads as these are simulated reads | ||
|
||
echo "# ------------------------------ #" | ||
echo "XICRA tRNA -i XICRA_analysis_tRNA --single_end --threads 4 --software mintmap" | ||
echo "..." | ||
XICRA tRNA -i XICRA_analysis_tRNA --noTrim --single_end --threads 4 --software mintmap | tee logs/XICRA_analysis_tRNA.tRNA.log | ||
echo "" | ||
echo "# ------------------------------ #" | ||
echo "" | ||
echo "" | ||
echo "" | ||
echo "`date` ... tRNA Single End Test finished ..." | ||
|
||
|
||
echo "" | ||
echo "`date` ... Finished ..." | ||
########################################## |