annotate aarnet_filesender.xml @ 3:8a4b0f14aa4e draft default tip

planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit 62cfda2672d51d769c18c633cb57a7a71dd5d226
author galaxy-australia
date Wed, 23 Oct 2024 00:10:46 +0000
parents 6d0c0961ae13
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
1 <tool id="aarnet_filesender" name="AARNet FileSender" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
2 <description>transfer files with AARNet's FileSender Service</description>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
3 <macros>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
4 <import>macros.xml</import>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
5 </macros>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
6 <expand macro="requirements"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
7 <expand macro="version_command"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
9 #if $test != "":
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
10 filesender -h &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
11 exit 0;
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
12 #end if
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
13
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
14 #set $apiuser = $__user__.extra_preferences.get('aarnet_filesender_account|username', "").strip()
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
15 #set $apikey = $__user__.extra_preferences.get('aarnet_filesender_account|apikey', "").strip()
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
16
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
17 #if $apiuser == "" or $apikey == "":
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
18 echo "ERROR: Please enter your FileSender Username in your user preferences under the AARNet FileSender Account Info section" >&2 &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
19 exit 1;
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
20 #end if
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
21
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
22 #if $to == "":
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
23 echo "WARNING: recipent email not set, setting to $__user_email__" &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
24 #set $to = $__user_email__
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
25 #end if
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
26
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
27 mkdir filestosend &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
28
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
29 #for $file in $data
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
30 if [ -f "filestosend/${file.element_identifier}" ]; then
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
31 echo "ERROR: two datasets have the same name (${file.element_identifier})" &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
32 exit 1;
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
33 fi &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
34 ln -s "$file" "filestosend/${file.element_identifier}" &&
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
35 #end for
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
36
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
37 filesender -p -u '$apiuser' -a '$apikey' -b https://filesender.aarnet.edu.au/rest.php -f '$__user_email__' -r '$to' -s 'Data sent from Galaxy' filestosend >$output 2>&1
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
38 ]]></command>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
39 <inputs>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
40 <param name="data" type="data" format="data" multiple="true" optional="false" label="Datasets to be sent:"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
41 <param name="to" type="text" optional="true" label="Email address of recipent:">
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
42 <sanitizer sanitize="False"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
43 </param>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
44 <param name="test" type="hidden" value=""/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
45 </inputs>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
46 <outputs>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
47 <data name="output" format="txt" hidden="false"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
48 </outputs>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
49 <tests>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
50 <test expect_exit_code="1" expect_failure="true">
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
51 <param name="data" value="summary_statistics.txt"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
52 <assert_stderr>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
53 <has_text text="ERROR: Please enter your FileSender Username in your user preferences under the AARNet FileSender Account Info section"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
54 </assert_stderr>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
55 </test>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
56 <test>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
57 <param name="data" value="summary_statistics.txt"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
58 <param name="test" value="true"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
59 <assert_stdout>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
60 <has_text text="File Sender CLI client"/>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
61 </assert_stdout>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
62 </test>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
63 </tests>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
64 <help>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
65 **What it does**
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
66
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
67 Uses `AARNet’s FileSender service`_ to send dataset(s) from Galaxy. The
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
68 recipient will receive an email with a link to download the files.
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
69
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
70 **Who can use it**
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
71
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
72 AARNet FileSender is available to all institutions affiliated with the
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
73 `Australian Access Federation (AAF)`_. You can use your institution
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
74 login details to access and use FileSender.
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
75
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
76 **How to connect your Galaxy account to FileSender**
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
77
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
78 To send files from Galaxy you will need to connect your Galaxy account
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
79 to FileSender. This is done by entering your FileSender API key into your
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
80 Galaxy user preferences.
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
81
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
82 1. Log in to FileSender, and copy your API key from the “API Secret” section on the FileSender “My
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
83 Profile” page. See the `AARNet Knowledge Base`_ for more information.
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
84 2. In Galaxy, add your API key to the “AARNet FileSender API Key” field
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
85 in User &gt; Preferences &gt; Manage Information. Your AARNet FileSender
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
86 Username is the email address you used to log in to FileSender.
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
87
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
88 .. _AARNet’s FileSender service: https://filesender.aarnet.edu.au
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
89 .. _Australian Access Federation (AAF): https://aaf.edu.au/subscribers/
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
90 .. _AARNet Knowledge Base: https://support.aarnet.edu.au/hc/en-us/articles/235972948-FileSender-API
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
91 </help>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
92 <citations>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
93 <citation type="bibtex">
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
94 @misc{FileSenderCLI_github,
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
95 title={FileSenderCLI Github page},
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
96 url = {https://github.com/madsi1m/FileSenderCLI},}
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
97 </citation>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
98 </citations>
6d0c0961ae13 planemo upload for repository https://github.com/usegalaxy-au/tools-au/tree/master/tools/aarnet_filesender commit c8e1e0914854bf50287ea4b9ee86dfeb747a3342
galaxy-australia
parents:
diff changeset
99 </tool>