Skip to content

Commit

Permalink
test doc-02
Browse files Browse the repository at this point in the history
  • Loading branch information
aTrotier committed Nov 8, 2024
1 parent 6db6b5e commit 37c73f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
11 changes: 4 additions & 7 deletions docs/lit/examples/advanced_reco.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@ using SEQ_BRUKER_a_MP2RAGE_CS_360
using CairoMakie # plotting

# ## Download the datasets
artifact_toml = "../../../../Artifacts.toml"
_hash = artifact_hash("MP2RAGE_data", artifact_toml)
if ~isnothing(_hash)
datadir = artifact_path(_hash)
else
datadir = artifact_path(artifact_hash("MP2RAGE_data",find_artifacts_toml(".")))
end
artifact_toml = "../../../../Artifacts.toml"
_hash = artifact_hash("MP2RAGE_data", artifact_toml)

datadir = artifact_path(_hash)
@info "The test data is located at $datadir."

# If you want to perform your own reconstruction, you can change the following line in order to point to another a bruker dataset
Expand Down
12 changes: 5 additions & 7 deletions docs/lit/examples/simple_reco.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ using SEQ_BRUKER_a_MP2RAGE_CS_360
using CairoMakie # plotting

# ## Download the datasets
artifact_toml = "../../../../Artifacts.toml"
_hash = artifact_hash("MP2RAGE_data", artifact_toml)
if ~isnothing(_hash)
datadir = artifact_path(_hash)
else
datadir = artifact_path(artifact_hash("MP2RAGE_data",find_artifacts_toml(".")))
end
artifact_toml = "../../../../Artifacts.toml"
_hash = artifact_hash("MP2RAGE_data", artifact_toml)

datadir = artifact_path(_hash)

@info "The test data is located at $datadir."

# If you want to perform your own reconstruction, you can change the following line in order to point to another a bruker dataset
Expand Down

0 comments on commit 37c73f5

Please sign in to comment.