Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
I
IMP3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IMP
IMP3
Commits
10886ebb
Commit
10886ebb
authored
Apr 14, 2021
by
ahb-ufz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eukdetect redundancy with mapping
parent
b348fd19
Pipeline
#39807
failed with stages
in 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
16 deletions
+17
-16
workflow/rules/Taxonomy/eukdetect.smk
workflow/rules/Taxonomy/eukdetect.smk
+17
-16
No files found.
workflow/rules/Taxonomy/eukdetect.smk
View file @
10886ebb
...
@@ -225,22 +225,23 @@ rule ED_rmsort:
...
@@ -225,22 +225,23 @@ rule ED_rmsort:
samtools sort -o {output} {input} &>> {log}
samtools sort -o {output} {input} &>> {log}
"""
"""
rule ED_index:
if not 'assembly' in IMP_STEPS and not 'analysis' in IMP_STEPS:
input:
rule ED_index:
bam = "Analysis/taxonomy/EukDetect/filtering/{sample}_aln_q30_lenfilter_complexityfilter_dupfilter.sorted.bam"
input:
output:
bam = "Analysis/taxonomy/EukDetect/filtering/{sample}_aln_q30_lenfilter_complexityfilter_dupfilter.sorted.bam"
bai = "Analysis/taxonomy/EukDetect/filtering/{sample}_aln_q30_lenfilter_complexityfilter_dupfilter.sorted.bam.bai"
output:
threads: 1
bai = "Analysis/taxonomy/EukDetect/filtering/{sample}_aln_q30_lenfilter_complexityfilter_dupfilter.sorted.bam.bai"
resources:
threads: 1
runtime = "12:00:00",
resources:
mem = MEMCORE
runtime = "12:00:00",
log: "logs/analysis_eukdetect_index.{sample}.log"
mem = MEMCORE
message: "index: Indexing bam for eukdetect on {wildcards.sample} reads."
log: "logs/analysis_eukdetect_index.{sample}.log"
conda: ENVDIR + "/eukdetect.yaml"
message: "index: Indexing bam for eukdetect on {wildcards.sample} reads."
shell:
conda: ENVDIR + "/eukdetect.yaml"
"""
shell:
samtools index {input.bam} {output.bai} &>> {log}
"""
"""
samtools index {input.bam} {output.bai} &>> {log}
"""
rule ED_countreads:
rule ED_countreads:
input:
input:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment