-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from hansenms/final_revisions
Final revisions
- Loading branch information
Showing
11 changed files
with
84,565 additions
and
84,480 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,7 @@ old | |
*.aux | ||
*.fff | ||
*.lof | ||
*.h5 | ||
*.h5 | ||
code/ismrmrd_data/ | ||
*.zip | ||
*_hash.tex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
CURRENT_VERSION = ismrmrd_manuscript_mrm | ||
THE_GOAL = ismrmrd_paper | ||
TARGETS = $(THE_GOAL) | ||
|
||
SHA1 = $(shell git rev-parse HEAD) | ||
|
||
|
||
$(THE_GOAL).pdf: $(CURRENT_VERSION)_hash.tex | ||
latex $(CURRENT_VERSION)_hash.tex | ||
bibtex $(CURRENT_VERSION)_hash | ||
latex $(CURRENT_VERSION)_hash.tex | ||
latex $(CURRENT_VERSION)_hash.tex | ||
dvipdf $(CURRENT_VERSION)_hash.dvi $(THE_GOAL).pdf | ||
|
||
$(CURRENT_VERSION)_hash.tex: $(CURRENT_VERSION).tex | ||
sed -e s/MANUSCRIPT_SHA1/$(SHA1)/ $(CURRENT_VERSION).tex > $(CURRENT_VERSION)_hash.tex | ||
|
||
# so that when latex is re-run, it will get all references right | ||
|
||
update: | ||
touch $(CURRENT_VERSION)_hash.tex | ||
|
||
really: | ||
rm -f *.ps $(THE_GOAL).pdf $(CURRENT_VERSION).pdf | ||
|
||
clean: | ||
rm -f *~ *.bbl *.blg *.pdf *.log *.aux *.bak *.dvi *.sav *.out *.nav *.snm *.toc *.fff *.lof $(CURRENT_VERSION)_hash.tex | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ISMRMRD Manuscript | ||
------------------- | ||
|
||
This repository contains the manuscript and associated example code for the ISMRM Raw Data format. | ||
|
||
If you have latex installed, you can generate a PDF of the manuscript with | ||
|
||
$ make | ||
|
||
To run the example reconstructions: | ||
|
||
$ cd code | ||
$ ./doit.sh | ||
|
||
This will download the test data and run reconstructions (C++, Matlab, and Python). | ||
|
||
For all reconstructions to work, you must have: | ||
|
||
1. Compiled and installed ISMRMRD (https://github.com/ismrmrd/ismrmrd) | ||
2. Have added the path (``<ISMRMRD_SOURCE>/matlab``) to the Matlab API to your Matlab installation. | ||
3. Have installed the Python ISMRMRD API (https://github.com/ismrmrd/ismrmrd-python) | ||
|
||
On Windows computers or for individual steps (download and reconstructions), please see the ``code/doit.sh`` script for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
rm -f *.h5 | ||
rm -f *.zip | ||
rm -rf ismrmrd_data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ python do_makefigs.py | |
mv *.eps ../figures | ||
|
||
# Clean up | ||
rm -f *.h5 | ||
./do_clean.sh |
Oops, something went wrong.