-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version update for LRSDAY: v1.5.0 -> v1.6.0
- Loading branch information
Showing
38 changed files
with
1,666 additions
and
570 deletions.
There are no files selected for viewing
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
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Example_Outputs/SK1.assembly.final.filter.mummer2vcf.INDEL.vcf.gz
Binary file not shown.
Binary file modified
BIN
-29 Bytes
(100%)
Example_Outputs/SK1.assembly.final.filter.mummer2vcf.SNP.vcf.gz
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
35 changes: 35 additions & 0 deletions
35
Project_Template/00.Long_Reads/LRSDAY.00.Summary_Report_for_Long_Reads.sh
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,35 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
####################################### | ||
# load environment variables for LRSDAY | ||
source ./../../env.sh | ||
|
||
####################################### | ||
# set project-specific variables | ||
long_reads_in_fastq="SK1.filtered_subreads.fastq.gz" # The fastq file of long-reads (in fastq or fastq.gz format). Default = "SK1.filtered_subreads.fastq.gz" | ||
prefix="SK1" # The file name prefix for output files of the testing example. | ||
threads=1 # The number of threads to use. Default = "1". | ||
|
||
####################################### | ||
# process the pipeline | ||
|
||
#source $nanoplot_dir/activate | ||
$nanoplot_dir/NanoPlot \ | ||
--threads $threads \ | ||
--fastq $long_reads_in_fastq \ | ||
--minlength 0 \ | ||
--drop_outliers \ | ||
--N50 \ | ||
-o "${prefix}_Long_Reads_Summary_Report_out" | ||
|
||
############################ | ||
# checking bash exit status | ||
if [[ $? -eq 0 ]] | ||
then | ||
echo "" | ||
echo "LRSDAY message: This bash script has been successfully processed! :)" | ||
echo "" | ||
echo "" | ||
exit 0 | ||
fi | ||
############################ |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.