This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PySide2.QtWidgets import * | |
| from PySide2.QtCore import * | |
| from PySide2.QtGui import * | |
| from PySide2.QtQuick import QQuickView | |
| import sys | |
| import random | |
| class PlayerModel(QAbstractListModel): | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PySide2.QtWidgets import * | |
| from PySide2.QtCore import * | |
| from PySide2.QtGui import * | |
| from PySide2.QtWebEngineWidgets import QWebEngineView, QWebEngineSettings | |
| import sys | |
| import altair as alt | |
| import pandas as pd | |
| from vega_datasets import data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PySide2.QtWidgets import * | |
| from PySide2.QtCore import * | |
| from PySide2.QtGui import * | |
| import sys | |
| class RangeSlider(QWidget): | |
| def __init__(self, parent=None): | |
| super().__init__(parent) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class QueryPluginWidget(PluginWidget): | |
| """ Base class for all query plugin """ | |
| query_changed = Signal() # Signal to emit if UI change the query | |
| @property | |
| def query(self): | |
| return self._query | |
| @query.setter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <typeinfo> | |
| #include <functional> | |
| #include <vector> | |
| using namespace std; | |
| class Test | |
| { | |
| public : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <typeinfo> | |
| #include <functional> | |
| #include <vector> | |
| using namespace std; | |
| class Test | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <map> | |
| #include <string> | |
| #include <list> | |
| using namespace std; | |
| // =========== Classe de base: caché a l'utilisateur ================================== | |
| template <typename T> | |
| class Base | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <boost/spirit.hpp> | |
| #include <string> | |
| #include <typeinfo> | |
| namespace VQL | |
| { | |
| template <typename Iterator> | |
| auto parse(Iterator begin, Iterator end, bool& success) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| pwd | |
| MAMAN="maman.vcf.gz" | |
| PAPA="pere.vcf.gz" | |
| ENFANT="enfant.vcf.gz" | |
| DP_MAX=50 | |
| EXAC_AF=0.001 | |
| # initialize vtools prj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef MATABLEVIEW_H | |
| #define MATABLEVIEW_H | |
| #include <QTableView> | |
| class MaTableView : public QTableView | |
| { | |
| Q_OBJECT | |
| public: | |
| explicit MaTableView(QWidget *parent = 0); |