Skip to content

Commit

Permalink
documentation in view_builded_snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanomble authored Feb 25, 2021
1 parent f226f86 commit c5936b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reciprocal_blast/blast_project/blast_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ def view_builded_snakefile(project_id,nr_or_upload):
snakefile.close()

content = {}
for line in lines[2:]:
rule = ''
#adjust to start reading at a certain line
for line in lines[3:]:
if 'rule' in line:
rule = line
content[rule] = []
Expand Down

0 comments on commit c5936b0

Please sign in to comment.