Skip to content

Commit

Permalink
Fix docker args in GLNexusHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Feb 1, 2024
1 parent db93852 commit 2407a00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void execute(List<File> inputGvcfs, File outputVcf, PipelineOutputTracker
throw new PipelineJobException(e);
}

execute(Arrays.asList(localBashScript.getPath()));
execute(Arrays.asList("/bin/bash", localBashScript.getPath()));

if (!outputVcf.exists())
{
Expand Down
3 changes: 3 additions & 0 deletions singlecell/resources/views/singleCellDataManagement.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
},{
name: 'Readsets Assigned to Run Lacking Data',
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {schemaName: 'sequenceanalysis', queryName: 'sequence_readsets', 'query.viewName': 'Assigned to Run Lacking Data'})
},{
name: 'cDNA Libraries with Hashing and Single HTO/Lane',
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {schemaName: 'singlecell', queryName: 'cdna_libraries', 'query.uniqueHtos~in': '0;1', 'query.hashingReadsetId/name~isnonblank': null, 'query.hashingReadsetId/totalFiles~eq': 0})
},{
name: 'Analyses In Novogene-Related Workbook',
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {schemaName: 'sequenceanalysis', queryName: 'sequence_analyses', 'query.container/title~containsoneof': 'Novogene;shipment'})
Expand Down

0 comments on commit 2407a00

Please sign in to comment.