Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KNOT
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
MARIJON Pierre
KNOT
Commits
21763641
Commit
21763641
authored
Feb 15, 2019
by
MARIJON Pierre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to fpa 0.4
parent
2ec94158
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
6 deletions
+12
-6
MANIFEST.in
MANIFEST.in
+5
-0
conda_env.yml
conda_env.yml
+1
-1
knot/AAG.rules
knot/AAG.rules
+3
-3
knot/SG.rules
knot/SG.rules
+1
-1
knot/filter_tig/__main__.py
knot/filter_tig/__main__.py
+1
-1
setup.py
setup.py
+1
-0
No files found.
MANIFEST.in
View file @
21763641
include *.md
include knot/*.rules
include knot/config.yaml
recursive-include knot/analysis *
recursive-include knot/extremity_search *
recursive-include knot/filter_tig *
recursive-include knot/path_search *
recursive-include knot/sg_generation *
recursive-include knot/analysis/template *
conda_env.yml
View file @
21763641
...
...
@@ -6,7 +6,7 @@ channels:
dependencies
:
-
python=3
-
yacrd
-
fpa
-
fpa
=0.4
-
snakemake
-
pip
:
-
"
git+https://gitlab.inria.fr/pmarijon/knot.git"
knot/AAG.rules
View file @
21763641
...
...
@@ -10,7 +10,7 @@ rule build_AGG:
"{prefix}_AAG.csv"
shell:
"
python -m
knot.path_search {input.search} {output} {input.ovl_graph} {input.read2asm} {input.asm_graph} {input.tig2tig} --search-mode " + config["search_mode"]
"knot.path_search {input.search} {output} {input.ovl_graph} {input.read2asm} {input.asm_graph} {input.tig2tig} --search-mode " + config["search_mode"]
rule filter_contigs:
input:
...
...
@@ -20,7 +20,7 @@ rule filter_contigs:
"{prefix}_filtred.fasta"
shell:
"
python -m
knot.filter_tig {input} {output} -t " + str(config['min_contig_length'])
"knot.filter_tig {input} {output} -t " + str(config['min_contig_length'])
rule map_contigs2contigs:
input:
...
...
@@ -68,6 +68,6 @@ rule find_extremity:
"{prefix}ext_search.csv"
shell:
"
python -m
knot.extremity_search {input.read2asm} {input.read2read} {output}"
"knot.extremity_search {input.read2asm} {input.read2read} {output}"
knot/SG.rules
View file @
21763641
...
...
@@ -36,4 +36,4 @@ rule overlap2overlapgraph:
"{path}.gfa"
shell:
"fpa -o gfa1 -s -c -i {
output} {in
put}"
"fpa -o gfa1 -s -c -i {
input} {out
put}"
knot/filter_tig/__main__.py
View file @
21763641
...
...
@@ -5,7 +5,7 @@ import argparse
from
Bio
import
SeqIO
def
main
(
args
):
def
main
(
args
=
None
):
if
args
is
None
:
args
=
sys
.
argv
[
1
:]
...
...
setup.py
View file @
21763641
...
...
@@ -41,6 +41,7 @@ setup(
'console_scripts'
:
[
'knot = knot.__main__:main'
,
'knot.path_search = knot.path_search.__main__:main'
,
'knot.filter_tig = knot.filter_tig.__main__:main'
,
'knot.sg_generation = knot.sg_generation.__main__:main'
,
'knot.extremity_search = knot.extremity_search.__main__:main'
,
'knot.analysis.classifications = knot.analysis.classifications:main'
,
...
...
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