Closed NicHerndon closed 4 years ago
The documentation at https://tripal-galaxy.readthedocs.io/en/latest/API/api_overview.html has a couple of typos:
$is_connected = tripal_galaxy_test_connection(['galaxy_id' => galaxy_id]);
$is_connected = tripal_galaxy_test_connection(['galaxy_id' => $galaxy_id]);
$link = l($dataset['name'], $proxy_url) . ' (' . $dataset[file_size] . ')';
$link = l($dataset['name'], $proxy_url) . ' (' . $dataset['file_size'] . ')';
Fixed typos.
The documentation at https://tripal-galaxy.readthedocs.io/en/latest/API/api_overview.html has a couple of typos:
$is_connected = tripal_galaxy_test_connection(['galaxy_id' => galaxy_id]);
should be replaced with$is_connected = tripal_galaxy_test_connection(['galaxy_id' => $galaxy_id]);
.$link = l($dataset['name'], $proxy_url) . ' (' . $dataset[file_size] . ')';
should be replaced with$link = l($dataset['name'], $proxy_url) . ' (' . $dataset['file_size'] . ')';
.