Skip to content

Commit

Permalink
fixes paths (#66)
Browse files Browse the repository at this point in the history
* fixes paths

* moves yaml path
  • Loading branch information
robert-ervin-jones authored Jan 23, 2023
1 parent c33f9fd commit d1fc9b3
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions phylofisher/matrix_constructor.smk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rule prequal:
log:
f'{out_dir}/logs/prequal/{{gene}}.log'
conda:
'envs/prequal.yaml'
'prequal.yaml'
shell:
'prequal {input} >{log} 2>{log}'

Expand All @@ -49,7 +49,7 @@ rule mafft:
log:
f'{out_dir}/logs/mafft/{{gene}}.log'
conda:
'envs/mafft.yaml'
'mafft.yaml'
shell:
'mafft --thread 1 --globalpair --maxiterate 1000 --unalignlevel 0.6 {input} >{output} 2>{log}'

Expand All @@ -62,7 +62,7 @@ rule divvier:
log:
f'{out_dir}/logs/divvier/{{gene}}.log'
conda:
'envs/divvier.yaml'
'divvier.yaml'
shell:
f'''
divvier -minicol 4 -partial {{input}} >{{log}} 2>{{log}}
Expand All @@ -79,7 +79,7 @@ rule trimal:
log:
f'{out_dir}/logs/trimal/{{gene}}.log'
conda:
'envs/trimal.yaml'
'trimal.yaml'
shell:
'trimal -in {input} -gt 0.01 -out {output} >{log} 2>{log}'

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
'phylofisher/utilities/explore_database.py',
'phylofisher/utilities/gfmix_runner.py',
'phylofisher/utilities/gfmix_mammal.smk',
'phylofisher/envs/gfmix.yaml',
'phylofisher/envs/mammal.yaml',
'phylofisher/envs/prequal.yaml',
'phylofisher/envs/mafft.yaml',
'phylofisher/envs/divvier.yaml',
'phylofisher/envs/trimal.yaml',
'phylofisher/envs/raxml.yaml',
'phylofisher/envs/bmge.yaml',
'phylofisher/gfmix.yaml',
'phylofisher/mammal.yaml',
'phylofisher/prequal.yaml',
'phylofisher/mafft.yaml',
'phylofisher/divvier.yaml',
'phylofisher/trimal.yaml',
'phylofisher/raxml.yaml',
'phylofisher/bmge.yaml',
},
url='https://github.com/TheBrownLab/PhyloFisher',
license='MIT',
Expand Down

0 comments on commit d1fc9b3

Please sign in to comment.