Skip to content

Commit

Permalink
Add project skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Oct 8, 2015
1 parent 6de7100 commit 4e5488f
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.DS_Store


# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
doc/build/
doc/source/_static/test.png

\#*
*~
Empty file added code/.gitignore
Empty file.
Empty file added data/.gitignore
Empty file.
Empty file added paper/.gitignore
Empty file.
11 changes: 11 additions & 0 deletions paper/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
TITLE="report"

all:
pdflatex $(TITLE).tex
bibtex $(TITLE)
pdflatex $(TITLE).tex
pdflatex $(TITLE).tex


clean:
rm -f *.{aux,log,bbl,lof,lot,blg,out}
10 changes: 10 additions & 0 deletions paper/project.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@article{lindquist2008statistical,
title={The statistical analysis of fMRI data},
author={Lindquist, Martin A and others},
journal={Statistical Science},
volume={23},
number={4},
pages={439--464},
year={2008},
publisher={Institute of Mathematical Statistics}
}
47 changes: 47 additions & 0 deletions paper/report.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
\documentclass[11pt]{article}

\usepackage[margin=0.75in]{geometry}

\title{The title of your project proposal}
\author{
LastName1, FirstName1\\
\texttt{github1}
\and
LastName2, FirstName2\\
\texttt{github2}
\and
LastName3, FirstName3\\
\texttt{github3}
\and
LastName4, FirstName4\\
\texttt{github4}
}

\bibliographystyle{siam}

\begin{document}
\maketitle

\abstract{You should have a short abstract.}

\section{Introduction}

Identify a published fMRI paper and the accompanying data
\cite{lindquist2008statistical}. You should explain the basic idea of the
paper in a paragraph. You should also perform basic sanity check on the data
(e.g., can you downloaded, can you load the files, confirm that you have the
correct number of subjects).

Briefly explain what reproducibility means and in what sense you will
try to reproduce this study.

\section{Data}

\section{Methods}
\section{Results}
\section{Discussion}


\bibliography{project}

\end{document}
Empty file added slides/.gitignore
Empty file.

0 comments on commit 4e5488f

Please sign in to comment.