Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GeVarLi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TRANSVIHMI
nfernandez
GeVarLi
Commits
90c49ed7
Commit
90c49ed7
authored
1 year ago
by
nicolas.fernandez_ird.fr
Browse files
Options
Downloads
Patches
Plain Diff
Fixed 'q' insertion L.127 disabling right conda environment creation
parent
6c2b7b7a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Start_GeVarLi.sh
+1
-1
1 addition, 1 deletion
Start_GeVarLi.sh
configuration/config.yaml
+2
-2
2 additions, 2 deletions
configuration/config.yaml
workflow/snakefiles/gevarli.smk
+4
-0
4 additions, 0 deletions
workflow/snakefiles/gevarli.smk
with
7 additions
and
3 deletions
Start_GeVarLi.sh
+
1
−
1
View file @
90c49ed7
...
@@ -124,7 +124,7 @@ Conda environment ${red}snakemake-base_v.${snakemake_base_version}${nc} will be
...
@@ -124,7 +124,7 @@ Conda environment ${red}snakemake-base_v.${snakemake_base_version}${nc} will be
#
${
red
}
Rename
${
nc
}
: Rename fastq files (ver. 1.601)
#
${
red
}
Rename
${
nc
}
: Rename fastq files (ver. 1.601)
#
${
red
}
Graphviz
${
nc
}
: Dot snakemake DAG (ver. 7.1.0)
#
${
red
}
Graphviz
${
nc
}
: Dot snakemake DAG (ver. 7.1.0)
"
"
q
conda
env
create
-f
${
workdir
}
/workflow/environments/
${
os
}
/snakemake-base_v.
${
snakemake_base_version
}
.yaml
conda
env
create
-f
${
workdir
}
/workflow/environments/
${
os
}
/snakemake-base_v.
${
snakemake_base_version
}
.yaml
fi
fi
# Remove old 'gevarli' and 'snakemake' environments
# Remove old 'gevarli' and 'snakemake' environments
...
...
This diff is collapsed.
Click to expand it.
configuration/config.yaml
+
2
−
2
View file @
90c49ed7
...
@@ -25,9 +25,9 @@ consensus:
...
@@ -25,9 +25,9 @@ consensus:
min_cov
:
# Minimum coverage, mask lower regions with "N" (default: "30") [INT]
min_cov
:
# Minimum coverage, mask lower regions with "N" (default: "30") [INT]
# Available options (not exhaustive), choose one:
# Available options (not exhaustive), choose one:
-
'
30'
# AFROSCREEN SARS-CoV-2 Illumina amplicons sequencing (default)
-
'
30'
# AFROSCREEN SARS-CoV-2 Illumina amplicons sequencing (default)
#- 'Add_your_minimum_coverage' # Custom
#- 'Add_your_minimum_coverage' # Custom
min_af
:
'
0.2'
# Minimum allele frequency allowed (default: "0.2") [FLOAT]
min_af
:
'
0.2'
# Minimum allele frequency allowed (default: "0.2") [FLOAT]
reference
:
# Your reference, in fasta format (default: SARS-CoV-2_Wuhan_MN-908947-3)
reference
:
# Your reference, in fasta format (default: SARS-CoV-2_Wuhan_MN-908947-3)
# Available options (not exhaustive), choose one:
# Available options (not exhaustive), choose one:
-
'
SARS-CoV-2_Wuhan_MN-908947-3'
# SARS-CoV-2 (Nextclade and Pangolin)
-
'
SARS-CoV-2_Wuhan_MN-908947-3'
# SARS-CoV-2 (Nextclade and Pangolin)
#- 'Monkeypox-virus_Zaire_AF-380138-1' # Monkeypox (Nextclade and Pangolin)
#- 'Monkeypox-virus_Zaire_AF-380138-1' # Monkeypox (Nextclade and Pangolin)
...
...
This diff is collapsed.
Click to expand it.
workflow/snakefiles/gevarli.smk
+
4
−
0
View file @
90c49ed7
...
@@ -36,6 +36,8 @@ def get_nextclade_input(wildcards):
...
@@ -36,6 +36,8 @@ def get_nextclade_input(wildcards):
###############################################################################
###############################################################################
###### WILDCARDS ######
###### WILDCARDS ######
#SAMPLE, = glob_wildcards("/users/illumina/local/data/run_1/FATSQ/{sample}_R1.fastq.gz")
SAMPLE, = glob_wildcards("resources/reads/{sample}_R1.fastq.gz")
SAMPLE, = glob_wildcards("resources/reads/{sample}_R1.fastq.gz")
###############################################################################
###############################################################################
...
@@ -861,6 +863,8 @@ rule cutadapt_adapters_removing:
...
@@ -861,6 +863,8 @@ rule cutadapt_adapters_removing:
input:
input:
fwd_reads = "resources/reads/{sample}_R1.fastq.gz",
fwd_reads = "resources/reads/{sample}_R1.fastq.gz",
rev_reads = "resources/reads/{sample}_R2.fastq.gz"
rev_reads = "resources/reads/{sample}_R2.fastq.gz"
#fwd_reads = "/users/illumina/local/data/run_1/FATSQ/{sample}_R1.fastq.gz",
#rev_reads = "/users/illumina/local/data/run_1/FATSQ/{sample}_R2.fastq.gz"
output:
output:
fwd_reads = temp("results/01_Trimming/cutadapt/{sample}_cutadapt-removed_R1.fastq.gz"),
fwd_reads = temp("results/01_Trimming/cutadapt/{sample}_cutadapt-removed_R1.fastq.gz"),
rev_reads = temp("results/01_Trimming/cutadapt/{sample}_cutadapt-removed_R2.fastq.gz")
rev_reads = temp("results/01_Trimming/cutadapt/{sample}_cutadapt-removed_R2.fastq.gz")
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment