-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from DennisSchmitz/dev
Jovian release v1.2.0
- Loading branch information
Showing
40 changed files
with
1,097 additions
and
274 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
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
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
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
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
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,10 @@ | ||
name: Jovian_coverage_statistics | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python==3.8.5 | ||
- samtools==1.10 | ||
- pandas | ||
- pip |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
- multiqc==1.8 | ||
- multiqc==1.9 |
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,21 @@ | ||
name: Nano_clean_and_QC | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- intel | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- python=3.7 | ||
- minimap2==2.17 | ||
- samtools==1.11 | ||
- bedtools==2.29.2 | ||
- pysam==0.16.0.1 | ||
- pysamstats==1.1.2 | ||
- pandas==1.1.3 | ||
- mkl-service | ||
- biopython==1.78 | ||
- openjdk==11.0.8 | ||
- fastqc==0.11.8 | ||
- fastp==0.20.1 | ||
- cutadapt==2.10 |
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ dependencies: | |
- bedtools==2.29.2 | ||
- tabix==0.2.6 | ||
- seqtk==1.2.0 | ||
- seqkit==0.14.0 | ||
- pysam==0.16.0.1 |
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,15 @@ | ||
name: Nano_Consensus | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- intel | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- python=3.7 | ||
- pysam==0.16.0.1 | ||
- pysamstats==1.1.2 | ||
- pandas==1.1.3 | ||
- pip | ||
- pip: | ||
- gffpandas==1.2.0 |
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
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
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,11 @@ | ||
#!/bin/bash | ||
|
||
|
||
primerfile=$1 | ||
|
||
#start_spinner "Looking for average depth of coverage for each amplicon" | ||
#sleep 0.2 | ||
|
||
python bin/scripts/amplicon_coverage.py "${primerfile}" | ||
|
||
#stop_spinner $? |
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,21 @@ | ||
#!/bin/bash | ||
|
||
conda deactivate | ||
|
||
if [[ $PATH != *${STATS_NAME}* ]]; then # If helper env is not in your path (i.e. it is not currently active), do... | ||
set +ue # Turn bash strict mode off because that breaks conda | ||
|
||
if ! conda activate "${STATS_NAME}"; then # If exit statement is not 0, i.e. helper conda env hasn't been installed yet, do... | ||
echo -e "\tInstalling Jovian coverage-statistics environment..." | ||
conda env create -f ${PATH_JOVIAN_STATS_yaml} # Create the env from the specified yaml file | ||
set -o allexport | ||
conda activate "${STATS_NAME}" | ||
set +o allexport | ||
fi | ||
|
||
set -ue # Turn bash strict mode on again | ||
fi | ||
|
||
bash bin/includes/amplicon_cov $1 | ||
|
||
conda deactivate |
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
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
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
Oops, something went wrong.