cell

Mol. Cell. Proteomics | 癌症细胞来源小细胞外囊泡通过促进 HGF/c-Met通路对受体细胞转移产生作用

こ雲淡風輕ζ 提交于 2019-11-30 17:56:29
大家好,这次介绍的是Molecular Cellular Proteomics上的一篇文章,Cancer cell derived small extracellular vesicles contribute to recipient cell metastasis through promoting HGF/c-Met pathway,通讯作者是上海交通大学的生命科学与生物技术学院微生物代谢国家重点实验室的肖华教授团队。研究者们运用定量蛋白质组学相关技术从1400种细胞外囊泡蛋白中寻找到可能促进肿瘤转移的蛋白,并通过一系列临床样本等实验验证,证实HGF/c-Met通路能够促进细胞转移,这为肿瘤转移的预防和处置提供新思路。 肺癌通常致死率极高,癌症转移是主要成因。癌症转移是一种复杂的过程,通常与上皮-间质转化(epithelial-mesenchymal transition,EMT)有关。典型的EMT特征包括上皮细胞失去细胞粘附和细胞极性,并获得间充质表型以及增加侵袭和转移能力。细胞外囊泡(EVs)是存在于由细胞分泌到胞外微环境当中的囊泡结构,包括外泌体、微囊等多种类型。EVs可以通过物理性质大致分类,如“小囊泡”(sEVs)(<200nm)和“中/大囊泡”(>200nm)。外泌体就是一种直径在30nm到150nm之间的sEVs,其内含物包括多种蛋白质、核酸和代谢物

swift 首行缩进两个字符

孤街醉人 提交于 2019-11-30 17:42:33
1 let paraStyle01 = NSMutableParagraphStyle() 2 paraStyle01.alignment = .left 3 //对齐 4 paraStyle01.headIndent = 0.0 5 //行首缩进 6 let emptylen:CGFloat = (cell?.textLabel?.font.pointSize)!*2 7 paraStyle01.firstLineHeadIndent = emptylen 8 //首行缩进 9 paraStyle01.tailIndent = 0.0 10 //行尾缩进 11 paraStyle01.lineSpacing = 2.0 12 //行间距 13 let attrText = NSAttributedString(string: professLabData[indexPath.row] + professContent[indexPath.row], attributes: [.paragraphStyle: paraStyle01]) 14 cell?.textLabel?.attributedText = attrText 给tableviewcell的textlabel上文字的前两个字符添加颜色: 1 let attributeString =

GWT CellTable - set column width

喜夏-厌秋 提交于 2019-11-30 17:20:00
Is it possible to set the column width of CellTable in GWT? EDIT: As of GWT 2.2 table.setWidth and table.setColumnWidth are supported table.setWidth("100%", true); table.setColumnWidth(nameColumn, 35.0, Unit.PCT); table.setColumnWidth(addressColumn, 65.0, Unit.PCT); I was able to extend the CellTable with a method that sets the widths programmatically. It's a bit of a hack since all the real methods that should do this are private to CellTable and it seems like GWT should provide this method directly, but it seems to work. public void setColumnWidths(List<Integer> widths) { TableElement tel =

Custom layout for collection view in swift?

人走茶凉 提交于 2019-11-30 15:30:16
I have 7 cells in one section in a UICollectionView. I have searched for hours but all I can find is information about CollectionFlow and Custom layouts with hundreds of cells. All I want is display 7 cells with different identifiers in a collection view using a layout like this image: How can I achieve this layout? Follow this URL step by step.... SWIFT : http://www.raywenderlich.com/78550/beginning-ios-collection-views-swift-part-1 OBJECTIVE C : https://github.com/eoghain/RBCollectionViewBalancedColumnLayout Max Vitruk That is my solution. class HistoryLayout: UICollectionViewLayout { var

用python库openpyxl操作excel,从源excel表中提取信息复制到目标excel表中

≯℡__Kan透↙ 提交于 2019-11-30 14:58:46
现代生活中,我们很难不与excel表打交道,excel表有着易学易用的优点,只是当表中数据量很大,我们又需要从其他表册中复制粘贴一些数据(比如身份证号)的时候,我们会越来越倦怠,毕竟我们不是机器,没法长时间做某种重复性的枯燥操作。想象这样一个场景,我们有个几千行的表要填,需要根据姓名输入其对应的身份证号,但之前我们已经做过一个类似的表,同样的一些人的姓名跟身份证号是完整的,那么我们就需要通过一个个查找姓名,然后把身份证号码复制到我们当前要做的表里去。 当我日复一日重复着这些操作的时候,我都很想有一个自动化工具来完成这种操作,把做为人的我从这种非人的折磨里解脱出来,最后还是想到了python,因为这样我能很少的关注语言内部的一些细节,从而专注于解决这个问题。 其安装命令为 pip install openpyxl(在线安装)或者 easy_install openpyxl。 openpyxl的操作可以分四步,第一步载入现有workbook或者创建workbook到内存,分别使用 from openpyxl import load_workbook from openpyxl import Workbook #载入现有workbook中 wb1=load_workbook('lalala.xlsx') """ 在源表数据量很大的时候,这里我们可以使用openpyxl的read

python使用openpyxl操作execl

ε祈祈猫儿з 提交于 2019-11-30 13:00:28
openpyxl openpyxl可以用来对excel进行操作,但只能操作xlsx文件而不能操作xls文件。 主要用到三个概念:Workbooks,Sheets,Cells。 Workbook就是一个excel工作薄; Sheet是工作表中的一张工作表; Cell就是简单的一个格。 openpyxl就是围绕着这三个概念进行的:打开Workbook,定位Sheet,操作Cell。 读取与创建 读取Workbooks 可以导入openpyxl.load_workbook()来打开一个已经存在的workbook: >>> from openpyxl import load_workbook >>> wb2 = load_workbook('test.xlsx') >>> print wb2.get_sheet_names() ['Sheet2', 'New Title', 'Sheet1'] 创建Workbooks与Sheets 在刚开始使用openpyxl的时候,不需要直接在文件系统中创建一个文件,仅仅需要导入Workbook类并开始使用它: >>> from openpyxl import Workbook >>> wb = Workbook() 一个workbook总是会创建至少一个worksheet(工作表),可以通过openpyxl.workbook.Workbook

openpyxl模块(excel操作)

五迷三道 提交于 2019-11-30 12:27:15
openpyxl模块介绍 openpyxl模块是一个读写Excel 2010文档的Python库,如果要处理更早格式的Excel文档,需要用到额外的库,openpyxl是一个比较综合的工具,能够同时读取和修改Excel文档。其他很多的与Excel相关的项目基本只支持读或者写Excel一种功能。 安装openpyxl模块 pip3 install openpyxl openpyxl基本用法  想要操作Excel首先要了解Excel 基本概念,Excel中列以字幕命名,行以数字命名,比如左上角第一个单元格的坐标为A1,下面的为A2,右边的B1。   openpyxl中有三个不同层次的类,Workbook是对工作簿的抽象,Worksheet是对表格的抽象,Cell是对单元格的抽象,每一个类都包含了许多属性和方法。 操作Excel的一般场景: 打开或者创建一个Excel需要创建一个Workbook对象 获取一个表则需要先创建一个Workbook对象,然后使用该对象的方法来得到一个Worksheet对象 如果要获取表中的数据,那么得到Worksheet对象以后再从中获取代表单元格的Cell对象 Workbook对象 一个Workbook对象代表一个Excel文档,因此在操作Excel之前,都应该先创建一个Workbook对象。对于创建一个新的Excel文档

excel导入、下载功能

左心房为你撑大大i 提交于 2019-11-30 12:12:23
1、excel导入、下载功能 2、首先,我们是居于maven项目进行开发引入poi,如果不是那就手动下载相应的jar包引入项目就可以了 <!-- poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}</version> </dependency> 2、编写代码【excel 导入】 EXCEL工具类: package com.ntgjj.util; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.io.*; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import org.apache.poi.hssf

Java利用IText导出PDF(更新)

我只是一个虾纸丫 提交于 2019-11-30 11:01:43
我很久以前写的还是上大学的时候写的: https://www.cnblogs.com/LUA123/p/5108007.html ,今天心血来潮决定更新一波。 看了下官网( https://itextpdf.com/en ),出来个IText 7,但是这个要收费的,怎么收费我也不清楚,为了避免不必要的麻烦,还是用IText5版本玩了。 正文 首先引入依赖:(目前最新版的) <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-asian</artifactId> <version>5.2.0</version> </dependency> <!-- https://mvnrepository.com

Square instead of rounded corners in UITableViewCell grouped style

廉价感情. 提交于 2019-11-30 10:27:40
I want to have square corners for my grouped tableview cells instead of the default rounded corners, and I don't just want to use an image to give that effect. Is it possible? Most simply, in your tableView:cellForRowAtIndexPath: use cell.backgroundView = [[[UIView alloc] initWithFrame:cell.bounds] autorelease]; You can set the UITableViewCell's backgroundView and selectedBackgroundView to a custom UIView you create yourself. That should give you a square cell. The accepted answers works well, but unfortunately removes the separator lines between cells. If you have a 3x3 pixel