Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BiSePS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
IRHS-Bioinfo
BiSePS
Commits
916c07b2
Commit
916c07b2
authored
3 years ago
by
Skander Hatira
Browse files
Options
Downloads
Patches
Plain Diff
working in dev
parent
04afc8a3
No related branches found
No related tags found
No related merge requests found
Pipeline
#39295
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
resources/biseps
+1
-1
1 addition, 1 deletion
resources/biseps
src/components/Visualization/VisualizationFill.js
+10
-10
10 additions, 10 deletions
src/components/Visualization/VisualizationFill.js
with
11 additions
and
11 deletions
biseps
@
288f26b0
Compare
6e471e82
...
288f26b0
Subproject commit
6e471e82b11342bf39d0516f7a10ede827dcdf30
Subproject commit
288f26b082865e7c2904ab458372574c6c926eb5
This diff is collapsed.
Click to expand it.
src/components/Visualization/VisualizationFill.js
+
10
−
10
View file @
916c07b2
...
...
@@ -357,8 +357,8 @@ export default function VisualizationFill() {
const
handleServe
=
()
=>
{
try
{
const
server
=
http
.
createServer
((
request
,
response
)
=>
{
return
handler
(
request
,
response
,
{
const
server
=
http
.
createServer
(
async
(
request
,
response
)
=>
{
await
handler
(
request
,
response
,
{
public
:
user
.
user
.
jbPath
,
});
});
...
...
@@ -372,8 +372,8 @@ export default function VisualizationFill() {
retrieve
:
1
,
})
.
then
(
function
(
port
)
{
const
server
=
http
.
createServer
((
request
,
response
)
=>
{
return
handler
(
request
,
response
,
{
const
server
=
http
.
createServer
(
async
(
request
,
response
)
=>
{
await
handler
(
request
,
response
,
{
public
:
user
.
user
.
jbPath
,
});
});
...
...
@@ -486,12 +486,12 @@ export default function VisualizationFill() {
const
cgBW
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/methylation_extraction_bismark/
${
sample
.
samplePath
}
.deduplicated.CX_report.txt.sorted.cg.bw`
;
const
chgBW
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/methylation_extraction_bismark/
${
sample
.
samplePath
}
.deduplicated.CX_report.txt.sorted.chg.bw`
;
const
chhBW
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/methylation_extraction_bismark/
${
sample
.
samplePath
}
.deduplicated.CX_report.txt.sorted.chh.bw`
;
const
samplePath
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/alignment_bismark/
${
sample
.
samplePath
}
.deduplicated.b
am
`
;
const
samplePath
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/alignment_bismark/
${
sample
.
samplePath
}
.deduplicated.b
w
`
;
const
bedGraphLocal
=
path
.
join
(
bisepsTemp
,
path
.
basename
(
bedGraph
)
);
const
samplePathBai
=
`
${
outdir
}
/results/
${
sample
.
samplePath
}
/alignment_bismark/
${
sample
.
samplePath
}
.deduplicated.bam.bai`
;
//
const samplePathBai = `${outdir}/results/${sample.samplePath}/alignment_bismark/${sample.samplePath}.deduplicated.bam.bai`;
const
cgBWLocal
=
path
.
join
(
bisepsTemp
,
path
.
basename
(
cgBW
));
const
chgBWLocal
=
path
.
join
(
bisepsTemp
,
path
.
basename
(
chgBW
));
const
chhBWLocal
=
path
.
join
(
bisepsTemp
,
path
.
basename
(
chhBW
));
...
...
@@ -507,7 +507,7 @@ export default function VisualizationFill() {
cgBW
,
chgBW
,
chhBW
,
samplePathBai
,
//
samplePathBai,
];
const
associatedGenomePath
=
row
.
genome
.
replace
(
/^.*
[\\\/]
/
,
...
...
@@ -518,7 +518,7 @@ export default function VisualizationFill() {
console
.
log
(
path
.
join
(
user
.
user
.
jbPath
,
`
${
associatedGenomePath
}
/
${
sample
.
samplePath
}
.deduplicated.b
am
`
`
${
associatedGenomePath
}
/
${
sample
.
samplePath
}
.deduplicated.b
w
`
)
);
console
.
log
(
associatedGenomePath
);
...
...
@@ -532,7 +532,7 @@ export default function VisualizationFill() {
!
fileExist
(
path
.
join
(
user
.
user
.
jbPath
,
`
${
associatedGenome
}
/
${
sample
.
samplePath
}
.deduplicated.b
am
`
`
${
associatedGenome
}
/
${
sample
.
samplePath
}
.deduplicated.b
w
`
)
)
&&
fileExist
(
...
...
@@ -577,7 +577,7 @@ export default function VisualizationFill() {
fileExist
(
path
.
join
(
user
.
user
.
jbPath
,
`
${
associatedGenome
}
/
${
sample
.
samplePath
}
.deduplicated.b
am
`
`
${
associatedGenome
}
/
${
sample
.
samplePath
}
.deduplicated.b
w
`
)
)
&&
fileExist
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment