From 038f8934326e5e33635acc2564ba193f6b8489a7 Mon Sep 17 00:00:00 2001 From: Jake VanCampen Date: Fri, 26 Jul 2024 20:15:48 -0700 Subject: [PATCH] update docs --- README.md | 4 ++-- docs/further.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1d23503..8bab1e4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ poetry run coverage run -m pytest tests/tests.py # Example -The below example Snakefile and command will stream a file, test.txt, containing the text "Hello, World" to the azure blob: https://account.blob.core.windows.net/container/test.txt +The below example Snakefile and command will stream a file, test.txt, containing the text "Hello, World" to the azure blob: https://accountname.blob.core.windows.net/container/test.txt ```Snakefile rule touch: @@ -35,6 +35,6 @@ The storage account and container that the output file is streamed to is specifi snakemake -j1 \ --default-storage-provider azure \ --default-storage-prefix "az://container" - --storage-azure-endpoint-url https://account.blob.core.windows.net \ + --storage-azure-account-name accountname \ --verbose ``` diff --git a/docs/further.md b/docs/further.md index 59ffcf7..93b7978 100644 --- a/docs/further.md +++ b/docs/further.md @@ -1,4 +1,4 @@ -The below example Snakefile and command will stream a file, test.txt, containing the text "Hello, World" to the azure blob: https://account.blob.core.windows.net/container/test.txt. +The below example Snakefile and command will stream a file, test.txt, containing the text "Hello, World" to the azure blob: https://accountname.blob.core.windows.net/container/test.txt. ```Snakefile rule touch: @@ -13,6 +13,6 @@ rule touch: snakemake -j1 \ --default-storage-provider azure \ --default-storage-prefix "az://container" - --storage-azure-endpoint-url https://account.blob.core.windows.net \ + --storage-azure-account-name accountname \ --verbose ``` \ No newline at end of file