Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ONT_pilot_gitlab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ESB
ONT_pilot_gitlab
Commits
b6a340c1
Commit
b6a340c1
authored
4 years ago
by
Valentina Galata
Browse files
Options
Downloads
Patches
Plain Diff
analysis: rm unused code for mmseqs2
parent
f2edcfbf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/rules/analysis.smk
+0
-59
0 additions, 59 deletions
workflow/rules/analysis.smk
with
0 additions
and
59 deletions
workflow/rules/analysis.smk
+
0
−
59
View file @
b6a340c1
...
...
@@ -207,62 +207,3 @@ rule analysis_mash_screen_contigs:
os.path.join(ENV_DIR, "mash.yaml")
script:
os.path.join(SRC_DIR, "mash_screen_contigs.py")
##################################################
# MMseqs2
# rule analysis_mmseqs2_db:
# input:
# os.path.join(RESULTS_DIR, "assembly/{rtype}/{tool}/ASSEMBLY.FILTERED.fasta")
# output:
# os.path.join(RESULTS_DIR, "analysis/mmseqs2/{rtype}/{tool}/ASSEMBLY_db")
# log:
# "logs/mmseqs2_db.{rtype}.{tool}.log"
# wildcard_constraints:
# rtype="|".join(READ_TYPES),
# tool="|".join(ASSEMBLERS)
# conda:
# os.path.join(ENV_DIR, "mmseqs2.yaml")
# message:
# "Create MMseqs2 DB from {input}"
# shell:
# "(date && mmseqs createdb {input} {output} && date) &> {log}"
# rule analysis_mmseqs2_compare:
# input:
# db1=os.path.join(RESULTS_DIR, "analysis/mmseqs2/{rtype1}/{tool1}/ASSEMBLY_db"),
# db2=os.path.join(RESULTS_DIR, "analysis/mmseqs2/{rtype2}/{tool2}/ASSEMBLY_db")
# output:
# os.path.join(RESULTS_DIR, "analysis/mmseqs2/comparison/{rtype1}_{tool1}__{rtype2}_{tool2}")
# log:
# "logs/mmseqs2.{rtype1}.{tool1}.{rtype2}.{tool2}.log"
# wildcard_constraints:
# rtype1="|".join(READ_TYPES),
# rtype2="|".join(READ_TYPES),
# tool1="|".join(ASSEMBLERS),
# tool2="|".join(ASSEMBLERS)
# threads:
# config["mmseqs2"]["threads"]
# conda:
# os.path.join(ENV_DIR, "cd-hit.yaml")
# message:
# "Create MMseqs2 compare: {input}"
# shell:
# # TODO: "mmseqs2_tmp" ??? (see old files)
# "(date && mmseqs rbh {input.db1} {input.db2} {output} --min-seq-id 0.9 --threads {threads} && date) &> {log}"
# rule analysis_mmseqs2_m8_convert:
# input:
# db1=os.path.join(RESULTS_DIR, "analysis/mmseqs2/{rtype1}/{tool1}/ASSEMBLY_db"),
# db2=os.path.join(RESULTS_DIR, "analysis/mmseqs2/{rtype2}/{tool2}/ASSEMBLY_db"),
# rbh=os.path.join(RESULTS_DIR, "analysis/mmseqs2/comparison/{rtype1}_{tool1}__{rtype2}_{tool2}")
# output:
# os.path.join(RESULTS_DIR, "analysis/mmseqs2/comparison/{rtype1}_{tool1}__{rtype2}_{tool2}.m8")
# log:
# "logs/mmseqs2_convert.{rtype1}.{tool1}.{rtype2}.{tool2}.log"
# conda:
# os.path.join(ENV_DIR, "cd-hit.yaml")
# message:
# "Create MMseqs2 compare: {input}"
# shell:
# "(date && mmseqs convertalis {input.db1} {input.db2} {input.rbh} {output} && date) &> {log}"
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