Nantes Université
Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
C
ContaVect
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de modèles
Opération
Environnements
Surveillance
Incidents
Service d'assistance
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
adrien
ContaVect
Validations
9e394ec9
Valider
9e394ec9
rédigé
10 years ago
par
Adrien Leger
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Correct error in Bwa.IndexWrapper
parent
9a411abf
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
Conf.txt
+3
-8
3 ajouts, 8 suppressions
Conf.txt
pyDNA/Bwa/IndexWrapper.py
+7
-1
7 ajouts, 1 suppression
pyDNA/Bwa/IndexWrapper.py
avec
10 ajouts
et
9 suppressions
Conf.txt
+
3
−
8
Voir le fichier @
9e394ec9
...
...
@@ -79,28 +79,23 @@ fasta : ./demo/references/AAV-RSV-GFP.fa.gz
# List of output required for the reference separated by any blank space. See above
# for valid values (list of strings)
output : bam sam bedgraph bed covgraph
variant
output : bam sam bedgraph bed covgraph
[Ref2]
name : Backbone
fasta : ./demo/references/Bacterial_backbone.fa.gz
output : bam sam bedgraph bed covgraph
variant
output : bam sam bedgraph bed covgraph
[Ref3]
name : Helper
fasta : ./demo/references/Helper_plasmid.fa.gz
output : bam sam bedgraph bed covgraph
variant
output : bam sam bedgraph bed covgraph
[Ref4]
name : Ad5
fasta : ./demo/references/Ad5_in_293_genome.fa.gz
output : bam bedgraph
[Ref5]
name : human_genome
fasta : ./demo/references/HG_GRCh38_chr22.fa.gz
output : bam bedgraph
#####################
# FASTQ FILES #
#####################
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
pyDNA/Bwa/IndexWrapper.py
+
7
−
1
Voir le fichier @
9e394ec9
...
...
@@ -49,6 +49,12 @@ class NewIndex(object):
if
isinstance
(
ref
,
str
):
self
.
ref
=
ref
self
.
_make_index
()
# If list at one element = same thing
elif
isinstance
(
ref
,
list
)
and
len
(
ref
)
==
1
:
self
.
ref
=
ref
[
0
]
self
.
_make_index
()
# If severel references, merged them, make index and remove the merged reference file
elif
isinstance
(
ref
,
list
):
print
(
"
Merge references files for indexation
"
)
...
...
@@ -76,7 +82,7 @@ class NewIndex(object):
# Run the command line without stdin and asking both stdout and stderr
start_time
=
time
()
stderr
=
run_command
(
cmd
,
stdin
=
None
,
ret_stderr
=
True
,
ret_stdout
=
False
)
print
(
stderr
)
print
(
"
Index created in {}s
\n
"
.
format
(
round
(
time
()
-
start_time
,
3
)))
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter