Skip to content

Commit 8bc38de

Browse files
Update translations (#859)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c0e7bae commit 8bc38de

File tree

9 files changed

+4721
-1018
lines changed

9 files changed

+4721
-1018
lines changed

docs/de/docs/side_quests/working_with_files.md

Lines changed: 526 additions & 856 deletions
Large diffs are not rendered by default.

docs/es/docs/side_quests/working_with_files.md

Lines changed: 735 additions & 3 deletions
Large diffs are not rendered by default.

docs/fr/docs/side_quests/working_with_files.md

Lines changed: 822 additions & 10 deletions
Large diffs are not rendered by default.

docs/hi/docs/side_quests/working_with_files.md

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ nextflow run main.nf
176176

177177
`main.nf` को एडिट करें और string को `file()` के साथ wrap करें जैसा कि नीचे दिखाया गया है:
178178

179-
=== "बाद"
179+
=== "बाद में"
180180

181181
```groovy title="main.nf" linenums="5" hl_lines="2"
182182
// एक string path से Path ऑब्जेक्ट बनाएं
@@ -233,7 +233,7 @@ Nextflow ने हमारी string को Path ऑब्जेक्ट म
233233

234234
चलो अपने workflow को अपडेट करते हैं ताकि built-in फ़ाइल विशेषताएँ प्रिंट हों:
235235

236-
=== "बाद"
236+
=== "बाद में"
237237

238238
```groovy title="main.nf" linenums="5" hl_lines="4-9"
239239
// एक string path से Path ऑब्जेक्ट बनाएं
@@ -289,7 +289,7 @@ strings और Path ऑब्जेक्ट्स के बीच का अ
289289

290290
workflow में process का उपयोग करने के लिए, तुम्हें workflow block से पहले एक include स्टेटमेंट जोड़ना होगा:
291291

292-
=== "बाद"
292+
=== "बाद में"
293293

294294
```groovy title="main.nf" linenums="1" hl_lines="3"
295295
#!/usr/bin/env nextflow
@@ -342,7 +342,7 @@ process COUNT_LINES {
342342

343343
workflow में निम्नलिखित एडिट करें:
344344

345-
=== "बाद"
345+
=== "बाद में"
346346

347347
```groovy title="main.nf" linenums="7" hl_lines="11-12"
348348
// एक string path से Path ऑब्जेक्ट बनाएं
@@ -420,7 +420,7 @@ nextflow run main.nf
420420

421421
workflow में निम्नलिखित एडिट करें, path-विशिष्ट print statements को comment out करना सुनिश्चित करें:
422422

423-
=== "बाद"
423+
=== "बाद में"
424424

425425
```groovy title="main.nf" linenums="7" hl_lines="2 6-11"
426426
// एक string path से Path ऑब्जेक्ट बनाएं
@@ -504,7 +504,7 @@ Nextflow ने तुरंत समस्या का पता लगाय
504504

505505
मॉड्यूल में निम्नलिखित एडिट करें:
506506

507-
=== "बाद"
507+
=== "बाद में"
508508

509509
```groovy title="modules/count_lines.nf" linenums="3" hl_lines="5"
510510
process COUNT_LINES {
@@ -643,7 +643,7 @@ Nextflow authentication और फ़ाइलों को सही जगह
643643

644644
`main.nf` फिर से खोलो और इनपुट path को निम्नानुसार बदलो:
645645

646-
=== "बाद"
646+
=== "बाद में"
647647

648648
```groovy title="main.nf" linenums="2" hl_lines="2"
649649
// इंटरनेट से रिमोट फ़ाइल का उपयोग
@@ -751,7 +751,7 @@ nextflow run main.nf
751751

752752
हम इस side quest के बाकी हिस्से के लिए अपनी लोकल example फ़ाइलों का उपयोग करने जा रहे हैं, तो चलो workflow इनपुट को वापस original फ़ाइल पर switch करते हैं:
753753

754-
=== "बाद"
754+
=== "बाद में"
755755

756756
```groovy title="main.nf" linenums="2" hl_lines="2"
757757
// एक string path से Path ऑब्जेक्ट बनाएं
@@ -817,7 +817,7 @@ ch_files = channel.of([file('data/patientA_rep1_normal_R1_001.fastq.gz')],
817817

818818
चलो अपने workflow को अपडेट करते हैं `channel.fromPath` का उपयोग करने के लिए।
819819

820-
=== "बाद"
820+
=== "बाद में"
821821

822822
```groovy title="main.nf" linenums="7" hl_lines="1-3"
823823
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -883,7 +883,7 @@ Channel factory का उपयोग करने के हमारे प
883883

884884
चलो पूर्ण फ़ाइल attributes print करने पर वापस जाते हैं:
885885

886-
=== "बाद"
886+
=== "बाद में"
887887

888888
```groovy title="main.nf" linenums="7" hl_lines="3-9 12"
889889
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -966,7 +966,7 @@ patientA_rep1_normal_R*_001.fastq.gz
966966

967967
अब हमें बस channel factory में फ़ाइल path को उस glob pattern का उपयोग करने के लिए update करना है जैसा कि निम्नानुसार है:
968968

969-
=== "बाद"
969+
=== "बाद में"
970970

971971
```groovy title="main.nf" linenums="7"
972972
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -1060,7 +1060,7 @@ nextflow run main.nf
10601060

10611061
workflow में निम्नलिखित edits करें:
10621062

1063-
=== "बाद"
1063+
=== "बाद में"
10641064

10651065
```groovy title="main.nf" linenums="7" hl_lines="3-6"
10661066
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -1121,7 +1121,7 @@ channel में प्रत्येक element अब एक tuple है
11211121

11221122
workflow में निम्नलिखित edits करें:
11231123

1124-
=== "बाद"
1124+
=== "बाद में"
11251125

11261126
```groovy title="main.nf" linenums="7" hl_lines="4"
11271127
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -1207,7 +1207,7 @@ Nextflow में, इसे [map](https://nextflow.io/docs/latest/script.html#
12071207
चलो अब अपनी flat list को map में convert करते हैं।
12081208
workflow में निम्नलिखित edits करें:
12091209

1210-
=== "बाद"
1210+
=== "बाद में"
12111211

12121212
```groovy title="main.nf" linenums="7" hl_lines="4-13"
12131213
// channel.fromPath के साथ फ़ाइलें लोड करें
@@ -1318,7 +1318,7 @@ data/patientA_rep1_normal_R{1,2}_001.fastq.gz
13181318

13191319
चलो `main.nf` workflow को accordingly update करते हैं:
13201320

1321-
=== "बाद"
1321+
=== "बाद में"
13221322

13231323
```groovy title="main.nf" linenums="7" hl_lines="1-2"
13241324
// channel.fromFilePairs के साथ फ़ाइलें लोड करें
@@ -1413,7 +1413,7 @@ Not a valid path value: 'patientA_rep1_normal_R'
14131413

14141414
तो चलो बस `COUNT_LINES` की call को comment out (या delete) करते हैं और आगे बढ़ते हैं।
14151415

1416-
=== "बाद"
1416+
=== "बाद में"
14171417

14181418
```groovy title="main.nf" linenums="26" hl_lines="2"
14191419
// फ़ाइल में लाइनें गिनें
@@ -1457,7 +1457,7 @@ nextflow run main.nf
14571457

14581458
workflow में map ऑपरेशन को uncomment करो और निम्नलिखित edits करो:
14591459

1460-
=== "बाद"
1460+
=== "बाद में"
14611461

14621462
```groovy title="main.nf" linenums="7" hl_lines="3-4 9 11 13"
14631463
// channel.fromFilePairs के साथ फ़ाइलें लोड करें
@@ -1550,7 +1550,7 @@ workflow में इस process का उपयोग करने के ल
15501550

15511551
workflow में निम्नलिखित edit करो:
15521552

1553-
=== "बाद"
1553+
=== "बाद में"
15541554

15551555
```groovy title="main.nf" linenums="1" hl_lines="3"
15561556
#!/usr/bin/env nextflow
@@ -1563,7 +1563,7 @@ workflow में निम्नलिखित edit करो:
15631563
=== "पहले"
15641564

15651565
```groovy title="main.nf" linenums="1"
1566-
#!/usr/bin/env nextflow
1566+
#!/usr्bin/env nextflow
15671567

15681568
workflow {
15691569
```
@@ -1626,7 +1626,7 @@ Remapped contents को `ANALYZE_READS` process को feed करने के
16261626

16271627
Main workflow में, `.view()` ऑपरेटर को `.set { ch_samples }` से replace करो, और एक line add करो testing कि हम channel को name से refer कर सकते हैं।
16281628

1629-
=== "बाद"
1629+
=== "बाद में"
16301630

16311631
```groovy title="main.nf" linenums="7" hl_lines="14 16-17"
16321632
// channel.fromFilePairs के साथ फ़ाइलें लोड करें
@@ -1692,7 +1692,7 @@ nextflow run main.nf
16921692

16931693
Main workflow में, निम्नलिखित code changes करो:
16941694

1695-
=== "बाद"
1695+
=== "बाद में"
16961696

16971697
```groovy title="main.nf" linenums="23"
16981698
// analysis चलाएं
@@ -1757,7 +1757,7 @@ Process ने हमारे inputs लिए और patient metadata वा
17571757
मान लो हम जितना possible हो उतना greedy होना चाहते हैं।
17581758
workflow में निम्नलिखित edits करो:
17591759

1760-
=== "बाद"
1760+
=== "बाद में"
17611761

17621762
```groovy title="main.nf" linenums="7" hl_lines="2"
17631763
// channel.fromFilePairs के साथ फ़ाइलें लोड करें
@@ -1814,7 +1814,7 @@ Results डायरेक्टरी में अब सभी available ड
18141814

18151815
workflow में निम्नलिखित change करो:
18161816

1817-
=== "बाद"
1817+
=== "बाद में"
18181818

18191819
```groovy title="modules/analyze_reads.nf" linenums="6"
18201820
publishDir { "results/${meta.type}/${meta.id}/${meta.replicate}" }, mode: 'copy'
@@ -1973,15 +1973,16 @@ nextflow run main.nf
19731973
19741974
- फ़ाइल attributes प्राप्त करें
19751975
1976-
```groovy
1976+
````groovy
19771977
ch_files.view { myFile ->
19781978
println "File object class: ${myFile.class}"
19791979
println "File name: ${myFile.name}"
19801980
println "Simple name: ${myFile.simpleName}"
19811981
println "Extension: ${myFile.extension}"
1982+
```groovy
19821983
println "Parent directory: ${myFile.parent}"
19831984
}
1984-
```
1985+
````
19851986
19861987
4. **Filenames से Patient Metadata Extract करना:** हमने filenames से metadata extract और structure करने के लिए `tokenize()` और `replace()` का उपयोग किया, उन्हें organized maps में convert करते हुए।
19871988

0 commit comments

Comments
 (0)