From 9ce294f6d5bdf72055a824ab610488a7f832a4d3 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Thu, 12 Aug 2021 03:17:23 -0700 Subject: [PATCH] docs: Fix typo in file path in remote files documentation (#1110) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Johannes Köster --- docs/snakefiles/remote_files.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/snakefiles/remote_files.rst b/docs/snakefiles/remote_files.rst index fdfac7ed2..ca351e86d 100644 --- a/docs/snakefiles/remote_files.rst +++ b/docs/snakefiles/remote_files.rst @@ -33,7 +33,7 @@ Amazon Simple Storage Service (S3) This section describes usage of the S3 RemoteProvider, and also provides an intro to remote files and their usage. -It is important to note that you must have credentials (``access_key_id`` and ``secret_access_key``) which permit read/write access. If a file only serves as input to a Snakemake rule, read access is sufficient. You may specify credentials as environment variables or in the file ``=/.aws/credentials``, prefixed with ``AWS_*``, as with a standard `boto config `_. Credentials may also be explicitly listed in the ``Snakefile``, as shown below: +It is important to note that you must have credentials (``access_key_id`` and ``secret_access_key``) which permit read/write access. If a file only serves as input to a Snakemake rule, read access is sufficient. You may specify credentials as environment variables or in the file ``~/.aws/credentials``, prefixed with ``AWS_*``, as with a standard `boto config `_. Credentials may also be explicitly listed in the ``Snakefile``, as shown below: For the Amazon S3 and Google Cloud Storage providers, the sub-directory used must be the bucket name.