<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%namespace file="/requests/common/common.mako" import="render_sample_datasets" /> <%namespace file="/requests/common/common.mako" import="common_javascripts" /> <%def name="javascripts()"> ${parent.javascripts()} ${common_javascripts()} ${h.js( "libs/jquery/jquery-ui", "libs/jquery/jquery.cookie", "libs/jquery/jquery.dynatree" )} ${h.css( "dynatree_skin/ui.dynatree" )} <% is_admin = cntrller == 'requests_admin' and trans.user_is_admin() can_transfer_datasets = is_admin and sample.untransferred_dataset_files and sample.library and sample.folder %>

%if not sample:
Select a sample before selecting datasets to transfer
%endif %if request.samples_without_library_destinations:

Select a target data library and folder for a sample before selecting its datasets to transfer from the external service

%endif %if message: ${render_msg( message, status )} %endif
Select datasets to transfer from data directory configured for the external service
${sample_id_select_field.get_html()}
Select the sample that was sequenced to produce the datasets you want to transfer.
Loading...
  • Click the external service configuration button and change the Data directory setting to redefine the source data location.
  • Select a folder to select all of the individual files within that folder.
  • Click the Select datasets button when desired dataset check boxes are checked.
%if sample and sample.datasets: <% title = 'All selected datasets for "%s"' % sample.name %>

${render_sample_datasets( 'requests_admin', sample, sample.datasets, title )} %endif