You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.rst
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,17 @@ The easiest way to get up and running is using Docker. To get up and running, pu
15
15
Preparing the data
16
16
------------------
17
17
18
-
Place all of you samples to analyse in the same directory. Then navigate inside and run::
18
+
Place all of your samples to be analysed in the same directory. Then navigate inside and run::
19
19
20
20
ls -d -1 $PWD/*.fasta > input.txt
21
21
22
22
If using Docker, instead navigate to the directory containing the fasta files and run the below command, to ensure file paths are relative (the docker version will not work with absolute paths)::
23
23
24
-
ls -d -1 *.fasta > input.txt
24
+
ls -d -1 *.fasta > input_docker.txt
25
+
26
+
Then, append the prefix ``/data/`` to each line to enable ggCaller to find the files::
27
+
28
+
sed -i -e 's|^|/data/|' input_docker.txt
25
29
26
30
Running ggCaller
27
31
------------------
@@ -39,9 +43,9 @@ To run ggCaller with just reads::
39
43
40
44
ggcaller --reads input.txt --out output_path
41
45
42
-
If using Docker, run with the below command. You must ensure all paths are relative, including in ``input.txt``::
46
+
If using Docker, run with the below command, ensuring you keep ``--balrog-db /app/ggc_db`` and ``/workdir`` paths as specified below. Replace ``path to files`` with the absolute path to the directory of files in ``input_docker.txt``::
0 commit comments