Skip to content

Commit f7e5e7a

Browse files
committed
Resolve merge conflicts
2 parents 241c74a + 4848fc7 commit f7e5e7a

File tree

7 files changed

+259
-83
lines changed

7 files changed

+259
-83
lines changed

.github/workflows/sync-repos.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ on:
44
- cron: "10 */3 * * *"
55
jobs:
66
sync-release-branches:
7-
# github.head_ref should only be set on forked repos, meaning this action should only run on the primary fork
8-
if: github.head_ref == ''
7+
if: github.repository == 'BimberLab/DiscvrLabkeyModules'
98
runs-on: ubuntu-latest
109
steps:
1110
- name: "Sync Release Branches"
@@ -17,7 +16,7 @@ jobs:
1716
destination_branch_prefix: "discvr-"
1817
github_token: ${{ secrets.GITHUB_TOKEN }}
1918
sync-develop:
20-
if: github.head_ref == ''
19+
if: github.repository == 'BimberLab/DiscvrLabkeyModules'
2120
runs-on: ubuntu-latest
2221
steps:
2322
- name: "Sync Develop Branch"

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
/intellijBuild
55
/travisSettings.sh
66

7-
dependencies.txt
7+
# Created by npm install
8+
/jbrowse/jb_run.js
9+
/jbrowse/jb_setup.js

SequenceAnalysis/src/org/labkey/sequenceanalysis/analysis/CellHashingHandler.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,9 @@ public void processFilesRemote(List<Readset> readsets, JobContext ctx) throws Un
268268
{
269269
ctx.getLogger().warn("None of the edit distances produced results");
270270
}
271+
272+
//clear info field
273+
ctx.getJob().setStatus(PipelineJob.TaskStatus.running);
271274
}
272275
}
273276
}
@@ -277,7 +280,7 @@ private Map<String, Object> executeCiteSeqCount(JobContext ctx, RecordedAction a
277280
CiteSeqCountWrapper wrapper = new CiteSeqCountWrapper(ctx.getLogger());
278281
ReadData rd = rs.getReadData().get(0);
279282

280-
//ctx.getJob().setStatus(PipelineJob.TaskStatus.running, "Running CITE-seq-count with edit distance: " + editDistance);
283+
ctx.getJob().setStatus(PipelineJob.TaskStatus.running, "Running CITE-seq-count with edit distance: " + editDistance);
281284
List<String> args = new ArrayList<>();
282285

283286
args.addAll(getClientCommandArgs(ctx.getParams()));
@@ -326,6 +329,7 @@ private Map<String, Object> executeCiteSeqCount(JobContext ctx, RecordedAction a
326329
}
327330
ctx.getFileManager().addIntermediateFile(doneFile);
328331

332+
ctx.getJob().setStatus(PipelineJob.TaskStatus.running, "Generating HTO calls for edit distance: " + editDistance);
329333
File htoCalls = generateFinalCalls(outputMatrix.getParentFile(), ctx.getOutputDir(), outputBasename, ctx.getLogger(), null, true, minCountPerCell, ctx.getSourceDirectory());
330334
File html = new File(htoCalls.getParentFile(), outputBasename + ".html");
331335

0 commit comments

Comments
 (0)