Skip to content

Commit

Permalink
travis kicking and not staging the template right
Browse files Browse the repository at this point in the history
  • Loading branch information
wasade committed Oct 25, 2015
1 parent c4510a3 commit 6626f20
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions americangut/results_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

# These are the Latex templates for the different results types
_templates = {
'fecal': ('template_gut.tex', 'macros_gut.tex'),
'oral': ('template_oralskin.tex', 'macros_oralskin.tex'),
'skin': ('template_oralskin.tex', 'macros_oralskin.tex')
'fecal': 'template_gut.tex',
'oral': 'template_oralskin.tex',
'skin': 'template_oralskin.tex'
}


Expand Down Expand Up @@ -94,9 +94,9 @@ def get_repository_latex_pdfs(sample_type):
def stage_static_latex(sample_type, working_dir):
latex_dir = get_repository_latex()

for item in _templates[sample_type.lower()]:
src = get_path(latex_dir, item)
shutil.copy(src, working_dir)
item = _templates[sample_type.lower()]
src = get_path(latex_dir, item)
shutil.copy(src, working_dir)


def stage_static_pdfs(sample_type, working_dir):
Expand Down
1 change: 0 additions & 1 deletion conda_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ notebook
scikit-bio==0.2.3
cython
natsort<4.0.0
future >= 0.14.3
1 change: 1 addition & 0 deletions pip_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ seaborn
qiime
runipy
ipymd
future==0.15.2

0 comments on commit 6626f20

Please # to comment.